-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
executable file
·33 lines (31 loc) · 1.1 KB
/
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
25
26
27
28
29
30
31
32
33
import setuptools
with open("README.md", "r") as fh:
readme = fh.read()
setuptools.setup(
name="ncellapp",
version="2.0.1",
author="Hemanta Pokharel",
author_email="hemantapkh@yahoo.com",
description="Unofficial Python API Wrapper of Ncell",
long_description=readme,
long_description_content_type="text/markdown",
install_requires=["requests", "emoji"],
url="https://github.com/hemantapkh/ncellapp",
project_urls={
"Documentation": "https://ncellapp.readthedocs.io/en/latest/",
"Issue tracker": "https://github.com/hemantapkh/ncellapp/issues",
},
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Topic :: Internet',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
python_requires='>=3.0',
)