-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
34 lines (32 loc) · 1.08 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
""" Setup for vtjp """
from setuptools import setup
setup(
name='vtjp',
version='0.1.14',
description='Västtrafik API.',
long_description='Python implementation of Västtrafik Journy planner'
'(vtjp) public API.',
url='https://github.com/persandstrom/python-vasttrafik',
author='Per Sandström',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Home Automation',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords='vasttrafik västtrafik',
install_requires=['requests>=2.9.1', 'tabulate>=0.7.5'],
packages=['vasttrafik'],
zip_safe=True,
entry_points={
'console_scripts': [
'vtjp=vasttrafik.__main__:main',
]
})