-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 889 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 889 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
27
28
from setuptools import setup
from setuptools import find_packages
with open('README.rst') as f:
readme = f.read()
setup(
name='ptv-wrapper',
version='0.1.0',
packages=find_packages(),
description='An API Wrapper for Public Transport Victoria (PTV)',
long_description=readme,
url='https://github.com/abrizzz/ptv-wrapper',
license='MIT',
author='Akshay Brizmohun',
author_email='aksh1000@gmail.com',
python_requires='>=3',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
],
keywords=['ptv', 'melbourne', 'victoria', 'public transport'],
install_requires=['requests'],
tests_require=['pytest'],
)