-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (29 loc) · 971 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
25
26
27
28
29
30
31
32
33
34
35
from setuptools import setup, find_packages
with open("README.md", "r") as README:
long_description = README.read()
setup(
name="nanoAPI",
version="0.5.0",
author="Nandanunni A S",
author_email="[email protected]",
description="A nano web framework",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Nandan-unni/Nano",
packages=find_packages(),
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent"
],
python_requires='>=3.6',
install_requires=[
"gunicorn==20.0.4",
"colorama==0.4.4"
],
)
# python3 setup.py sdist bdist_wheel
# python3 -m twine upload --repository testpypi dist/*
# python3 -m twine upload --repository-url https://upload.pypi.org/legacy/ dist/*