-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 1.08 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
34
import setuptools
with open('README.md', 'r') as f:
long_description = f.read()
from nawah_cli import __version__
setuptools.setup(
name='nawah_cli',
version=__version__,
author='Mahmoud Abduljawad',
author_email='mahmoud@masaar.com',
description='CLI for Nawah--Rapid app development framework',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/nawah-io/nawah_cli',
packages=['nawah_cli'],
project_urls={
'Docs: Github': 'https://github.com/nawah-io/nawah_docs',
'GitHub: issues': 'https://github.com/nawah-io/nawah_cli/issues',
'GitHub: repo': 'https://github.com/nawah-io/nawah_cli',
},
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Framework :: AsyncIO',
],
python_requires='>=3.8',
entry_points={'console_scripts': {'nawah = nawah_cli.__main__:main',}},
)