forked from OliverSherouse/wbdata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 960 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
28
29
30
31
32
33
#!/usr/bin/env python
import re
from setuptools import setup
version = re.search(
r'^__version__\s*=\s*"(.*)"',
open('wbdata/__init__.py').read(),
re.M
).group(1)
setup(
name='wbdata',
version=version,
author='Oliver Sherouse',
author_email='[email protected]',
packages=['wbdata'],
url='https://github.com/oliversherouse/wbdata',
description='A library to access World Bank data',
install_requires=['decorator'],
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
('License :: OSI Approved ::'
' GNU General Public License v2 or later (GPLv2+)'),
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)