-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (27 loc) · 947 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
from distutils.core import setup
from setuptools import find_packages
setup(
name = 'bea-data',
packages=find_packages(include=['bea_data']),
version = '1.0',
license='MIT',
description = 'A python library that interacts with the Burea of Econmic Analysis API',
author = 'Aaron Finocchiaro',
author_email = '[email protected]',
url = 'https://github.com/a-finocchiaro/bea_project',
download_url = 'https://github.com/a-finocchiaro/bea_project/archive/v_1.tar.gz',
keywords = ['Pandas', 'Economic', 'Analysis', 'Bureau'],
install_requires=[
'pandas',
'requests',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)