This repository was archived by the owner on Jan 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (36 loc) · 1.28 KB
/
setup.py
File metadata and controls
41 lines (36 loc) · 1.28 KB
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
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
with open('requirements.txt') as file:
requirements = file.read().splitlines()
config = {
'name': 'prometheus',
'description': 'a global asset allocation tool',
'long_description': open('README.rst', 'rt').read(),
'author': 'Reuben Cummings',
'url': 'https://github.com/reubano/prometheus',
'download_url':
'https://github.com/reubano/prometheus/downloads/prometheus*.tgz',
'author_email': '[email protected]',
'version': '0.16.0',
'install_requires': requirements,
'classifiers': ['Development Status :: 4 - Beta',
'License :: OSI Approved :: The MIT License (MIT)',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Financial and Insurance Industry',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: Office/Business :: Financial :: Investment',
'Topic :: Scientific/Engineering :: Visualization',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux'],
'packages': find_packages(),
'zip_safe': False,
'license': 'MIT',
'platforms': ['MacOS X', 'Windows', 'Linux'],
'keywords': '',
'include_package_data': True,
}
setup(**config)