-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsetup.py
48 lines (43 loc) · 1.49 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
import versioneer
with open('README.md', encoding='utf-8') as readme:
readme = readme.read()
version = versioneer.get_version()
cmdclass = versioneer.get_cmdclass()
INSTALL_REQUIRES = [
'pandas',
'requests',
'versioneer',
]
setup(
name="full_fred",
packages=find_packages(),
version=version,
cmdclass=cmdclass,
description="Full interface to Federal Reserve Economic Data (FRED)",
author="Zachary A. Kraehling",
author_email="[email protected]",
long_description=readme,
long_description_content_type="text/markdown",
install_requires=INSTALL_REQUIRES,
url="https://github.com/7astro7/full_fred",
project_urls={
"Tracker": "https://github.com/7astro7/full_fred/issues",
"Source": "https://github.com/7astro7/full_fred",
},
test_suite="full_fred.tests",
platforms=["Any"],
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP",
"Programming Language :: Python :: 3",
],
keywords=["economics", "API", "econ", "fred", "financial", "FRED",],
)