-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 1009 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
#!/usr/bin/env python3
from setuptools import find_packages, setup
version = __import__('jawaf').__version__
setup(
author='Dan Pozmanter',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Application Frameworks',
],
description='Asynchronous Web Application Framework',
entry_points={'console_scripts': [
'jawaf-admin = jawaf.management:execute_from_command_line',
]},
include_package_data=True,
keywords='web framework',
license='BSD',
name='Jawaf',
packages=find_packages(),
scripts=['jawaf/bin/jawaf-admin.py'],
url='https://github.com/danpozmanter/jawaf',
version=version,
zip_safe=False,
)