-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
28 lines (25 loc) · 916 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import setup
# Also defined in investops/__init__.py and must be updated in both places.
MY_VERSION = '0.4.0'
setup(
name='investops',
packages=['investops'],
version=MY_VERSION,
description='Tools for investing in Python',
long_description='InvestOps is a collection of Python tools for investing, '
'including the fast and robust \"Hvass Diversification\" '
'algorithm for diversifying an investment portfolio.',
long_description_content_type="text/markdown",
author='Magnus Erik Hvass Pedersen',
author_email='[email protected]',
url='https://github.com/Hvass-Labs/InvestOps',
license='MIT',
keywords=['investing', 'portfolio optimization', 'hvass diversification'],
install_requires=[
'numpy',
'pandas',
'numba',
'matplotlib',
],
)