-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 912 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 912 Bytes
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
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name='drongo',
version='1.2.0',
description='A nano web-framework for python.',
author='Sattvik Chakravarthy, Sagar Chakravarthy',
author_email='sattvik@gmail.com',
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='https://github.com/drongo-framework/drongo',
include_package_data=True,
install_requires=[
'six',
],
zip_safe=False,
)