forked from eskerda/pybikes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 683 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 683 Bytes
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
# -*- coding: utf-8 -*-
# Copyright (C) 2010-2012, eskerda <eskerda@gmail.com>
# Distributed under the AGPL license, see LICENSE.txt
from setuptools import setup
setup(
name="pybikes",
version="1.0",
author="Lluis Esquerda",
author_email="eskerda@gmail.com",
packages=["pybikes"],
package_data={
'pybikes': ['data/*.json', 'kml/*.kml', 'kml/*.kml.gz'],
},
license="LICENSE.txt",
description="A python library for scrapping bike sharing data",
long_description=open('README.md').read(),
install_requires=[
'requests>=2.6.0',
'lxml',
'cssselect>=0.9',
'shapely>=1.5.13',
'demjson',
],
)