forked from OliverSherouse/bls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 942 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
#!/usr/bin/env python
import re
from setuptools import setup
version = re.search(
'^__version__\s*=\s*"(.*)"',
open('bls/__init__.py').read(),
re.M
).group(1)
setup(
name='bls',
version=version,
author="Oliver Sherouse",
author_email="oliver.sherouse@gmail.com",
packages=["bls"],
url="https://github.com/OliverSherouse/bls",
description="A library to access Bureau of Labor Statistics data",
requires=["pandas"],
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",
],
)