-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 806 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 806 Bytes
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
"""A setup module for portbalance."""
from setuptools import setup
setup(
name='portbalance',
version='0.1.0',
author='William Gilpin',
author_email='wgilpin@stanford.edu',
classifiers=[
'Programming Language :: Python',
'Operating System :: OS Independent',
],
description='A lightweight python library for maintaining and monitoring a stock portfolio',
keywords="finance portfolio rebalancing stock",
python_requires='>=3',
install_requires=[
'numpy',
'matplotlib',
'pandas',
'pandas-datareader'
],
# This line tells setup.py to add non-Python files from the root-level MANIFEST.in file
include_package_data=True,
packages=["portbalance"],
url='https://github.com/williamgilpin/portbalance'
)