-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
33 lines (30 loc) · 1.05 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
description = 'Functions and data manipulation for economics data'
with open('README.rst') as readme:
long_description = readme.read()
setup(
name='economics',
version='0.1.3',
url='https://github.com/tryggvib/economics',
license='GPLv3',
description=description,
long_description=long_description,
author='Jack Cooper-McEwan',
author_email='jackcooper93@gmail.com',
install_requires=['requests'],
packages=['economics'],
package_dir={'economics': 'economics'},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Intended Audience :: Financial and Insurance Industry',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Office/Business :: Financial',
'Topic :: Utilities',
],
)