-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (21 loc) · 818 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import setuptools
with open("README.md", "r") as file:
readme = file.read()
setuptools.setup(
name="buildlink",
version="1.0.0",
author="Devesh Singh",
author_email="connect.world12345@gmail.com",
description="pylink is a python program which helps you to shorten link with a single command without any registration or using any API Key.Its also provide option to expand any link available on internet on wide range of domain names.",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/TechUX/pylink",
license="MIT",
keywords = "link ",
classifiers=["License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python"],
packages=["pylink"],
include_package_data=True,
python_requires='>=2.0',
)