-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 825 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (20 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(name='common',
version='0.2.01',
author='Unascribed',
author_email='tech@polymathventures.co',
description='Code intended to be used across Polymath Ventures repositories.',
license='BSD',
url='https://github.com/PolymathVentures/common',
packages=['common',
'common.test'],
install_requires=['PyYAML>=3.11',
'Flask>=0.10.1',
'Flask-SQLAlchemy>=2.0',
'pytz>=2015.4',
'requests>=2.9.1',
'Unidecode>=0.4.19'],
test_suite='common.common_tests',
classifiers=['Development Status :: 3 - Alpha',
'Topic :: Utilities',
'License :: OSI Approved :: BSD License'])