-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathsetup.py
33 lines (27 loc) · 810 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
28
29
30
31
32
33
from setuptools import setup, find_packages
version = '1.0'
with open('README.md') as readme_file:
readme = readme_file.read()
# requirements
install_requires = set(x.strip() for x in open('requirements.txt'))
# dependency links
dependency_links = []
setup(
name="stocklook",
packages=find_packages("."),
description='Cryptocurrency and stock exchange analysis toolkit',
long_description=readme,
url='https://github.com/zbarge/stocklook/',
install_requires=install_requires,
tests_require=[],
dependency_links=dependency_links,
setup_requires=[
# 'pytest-runner==2.7'
],
version=version,
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3.5',
],
)