-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
29 lines (27 loc) · 1 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
from setuptools import setup
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='brownbear',
version='1.2.0',
description='A financial tool that can analyze and maximize investment portfolios on a risk adjusted basis.',
author='Farrell Aultman',
author_email='[email protected]',
url='https://github.com/fja05680/brownbear',
packages=['brownbear'],
include_package_data=True,
license='MIT',
install_requires=requirements,
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Office/Business :: Financial',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: System :: Distributed Computing',
],
)