-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (31 loc) · 1.26 KB
/
setup.py
File metadata and controls
38 lines (31 loc) · 1.26 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
from setuptools import setup, find_packages
import os
from tickerplot import __version__ as version
curdir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(curdir,'requirements.txt')) as f:
all_reqs = f.read().split('\n')
install_requires = [x.strip() for x in all_reqs if not x.startswith('#')]
# it's likely that we have something like -i -e
install_requires = [x for x in install_requires if not x.startswith('-i')]
dependency_links = install_requires
setup(name='tickerplot',
version=version,
description='tickerplot Common Utility Functions',
url='https://github.com/gabhijit/tickerplot',
license='MIT',
classifiers=[
'Natural Language :: English',
'Intended Audience :: Developers',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
],
keywords='stocks NSE',
packages=find_packages(exclude=['venv', 'venv3']),
include_package_data=True,
install_requires=install_requires,
dependency_links=dependency_links,
author='Abhijit Gadgil',
author_email='gabhijit@iitbombay.org'
)