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
24 lines (22 loc) · 649 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 649 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
# -*- 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'],
},
license = "LICENSE.txt",
description = "A python library for scrapping bike sharing data",
long_description = open('README.md').read(),
install_requires = [
'requests==2.0.0',
'lxml==3.2.3',
'cssselect==0.9.1'
],
)