forked from bcho/gzbus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (32 loc) · 1017 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
34
35
36
37
38
39
40
41
42
43
# coding: utf-8
from setuptools import setup, find_packages
__version__ = '0.1.1'
__author__ = 'hbc'
__email__ = '[email protected]'
README = 'Guangzhou bus routine realtime tracking.'
setup(
name='gzbus',
version=__version__,
author=__author__,
author_email=__email__,
url='https://github.com/bcho/gzbus',
description='Guangzhou bus routine realtime tracking.',
long_description='Guangzhou bus routine realtime tracking',
license='MIT',
packages=find_packages(exclude=['tests']),
include_package_data=True,
install_requires=[
'lxml',
'pyquery',
'requests'
],
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
]
)