-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
36 lines (35 loc) · 1.1 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
import sys
from setuptools import setup, find_packages
setup(
name="bikeshares",
version="0.0.0",
description="Standardized parsers for data published by bicycle-sharing programs. Currently supporting: NYC's Citi Bike, Chicago's Divvy, and Boston's Hubway.",
long_description="",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3"
],
keywords="bikeshare citibike hubway divvy",
author="Jeremy Singer-Vine",
author_email="jsvine@gmail.com",
url="http://github.com/buzzfeednews/bikeshares/",
license="MIT",
packages=find_packages(exclude=["test",]),
namespace_packages=[],
include_package_data=False,
zip_safe=False,
install_requires=[
"pandas",
],
tests_require=[],
test_suite="test",
entry_points={
"console_scripts": [
]
}
)