-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
41 lines (36 loc) · 1.26 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
import os
from setuptools import setup, find_packages
from acl_webapp import __author__, __version__
def __read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except IOError:
return ''
install_requires = __read('requirements.txt').split('\n')
setup(
name='acl_webapp',
author=__author__,
author_email='[email protected]',
version=__version__,
description='Web application with permissions (ACL), '
'built with tornado, mongodb, motor',
long_description=__read('README.rst'),
platforms=('Any'),
packages=find_packages(),
install_requires="", # TODO: check, why tox fails with install_requires
keywords='tornado mongodb motor async acl example'.split(),
include_package_data=True,
license='BSD License',
package_dir={'acl_webapp': 'acl_webapp'},
url='/mnt/dev/python_2dbit/test_work_secondary/acl_webapp/',
# url='https://github.com/st4lk/acl_webapp',
classifiers=[
'Environment :: Web Environment',
'Framework :: Tornado',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
],
)