-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
55 lines (51 loc) · 1.76 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='Bast',
version='1.0.1',
description='Simple yet Elegant Web Framework with MVC Patterns',
long_description=readme(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules'
],
keywords='web framework tornado ORM MVC',
url='https://github.com/moluwole/Bast',
author='Majiyagbe Oluwole',
author_email='[email protected]',
maintainer='Majiyagbe Oluwole | Azeez Abiodun Solomon',
license='MIT',
packages=['bast'],
platforms='any',
install_requires=[
'tornado',
'bcrypt',
'jinja2',
'gitpython',
'click',
'orator',
'python-env',
'colorama',
'nose',
'twine'
],
entry_points={
'console_scripts': ['panther=bast.cli:main'],
},
include_package_data=True,
zip_safe=False)