-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (33 loc) · 1.03 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
35
36
37
#!/usr/bin/env python
from setuptools import find_packages, setup
VERSION = '1.2.0'
REPO_URL = 'https://github.com/drongo-framework/drongo-nest'
setup(
name='drongo-nest',
version=VERSION,
description='High performance server for drongo.',
author='Sattvik Chakravarthy, Sagar Chakravarthy',
author_email='[email protected]',
entry_points={'console_scripts': [
'drongo-nest = nest.cmd:main',
]},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
packages=find_packages(),
url=REPO_URL,
include_package_data=True,
install_requires=[
'six',
],
zip_safe=False,
)