-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
49 lines (40 loc) · 1.19 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
#!/usr/bin/env python
""" Set-up """
import io
import os
from setuptools import setup
NAME = 'Operation-Pluto'
try:
import pluto.__version__
VERSION = pluto.__version__.__version__
except ModuleNotFoundError as e:
VERSION = "1.0.0"
DESCRIPTION = 'Grab and rinse financial and economic data.'
URL = 'https://github.com/hydra-lab/Operation-Pluto'
EMAIL = ''
AUTHOR = 'Operation Pluto contributors'
REQUIRED = [
'luigi', 'python-daemon', 'requests', 'pandas', 'beautifulsoup4', 'lxml', 'xlrd', 'sqlalchemy']
HERE = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(HERE, 'README.rst'), encoding='utf-8') as f:
LONG_DESCRIPTION = '\n' + f.read()
setup(
name=NAME,
version=VERSION,
author=AUTHOR,
author_email='',
description=DESCRIPTION,
url=URL,
keywords="data-pipeline finance market",
long_description=LONG_DESCRIPTION,
license="AGPL-3.0",
classifiers=[
'Topic :: Office/Business :: Financial :: Investment',
'Programming Language :: Python :: 3.5',
'Development Status :: 2 - Pre-Alpha',
],
packages=['pluto', 'test'],
install_requires=REQUIRED,
python_requires='>=3.5',
zip_safe=False
)