-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
52 lines (42 loc) · 1.62 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
ENCODING = 'utf-8'
PACKAGE_NAME = 'alphavantage'
local_directory = os.path.abspath(os.path.dirname(__file__))
version_path = os.path.join(local_directory, PACKAGE_NAME, '_version.py')
version_ns = {}
with open(version_path, 'r', encoding=ENCODING) as f:
exec(f.read(), {}, version_ns)
def get_requirements(requirement_file: str):
requirements = list(
open(requirement_file, 'r',
encoding=ENCODING).read().strip().split('\r\n'))
return requirements
def get_readme(readme_file: str):
with open(readme_file, encoding='utf-8') as file:
return file.read()
setup(name=PACKAGE_NAME,
packages=find_packages(exclude=('tests',)),
package_data={'': ['*.txt', '*.json']},
include_package_data=True,
version=version_ns['__version__'],
license='MIT',
description='Alphavantage API wrapper.',
long_description=get_readme('README.md'),
long_description_content_type='text/markdown',
url='https://github.com/portfoliome/alphavantage',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Financial and Insurance Industry',
'Topic :: Office/Business :: Financial :: Investment',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
],
author='Philip Martin',
author_email='philip.martin@censible.co',
install_requires=get_requirements('requirements.txt'),
extras_require={
'test': get_requirements('requirements-test.txt')
},
zip_safe=False)