-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
35 lines (32 loc) · 1.04 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
35
#!/usr/bin/env python
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='pyleapcard',
version='0.0.0',
description="Python Leap Card API (Unofficial). Access your card balance and journey history for Ireland's public "
"transport smart card.",
long_description=long_description,
long_description_content_type='text/markdown',
keywords='leap card public transport smart card api travel ireland',
author='Jack Higgins',
author_email='[email protected]',
url='https://github.com/skhg/pyleapcard',
packages=['pyleapcard'],
install_requires=[
'requests',
'bs4'
],
tests_require=[
'mock',
'nose',
],
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6'])