-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
25 lines (23 loc) · 827 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
# flake8: noqa
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name = 'luas.py',
version = '0.3.3',
packages = setuptools.find_packages(),
url = 'https://github.com/ronanmu/luas.py',
download_url = 'https://github.com/ronanmu/luas.py/tarball/0.3.3',
license = 'MIT',
requires=['requests'],
author = 'Ronan Murray',
author_email = '2470586+ronanmu@users.noreply.github.com',
description = 'Python module for interacting with Dublin Luas real-time API',
long_description=long_description,
long_description_content_type='text/markdown',
keywords = ['luas', 'transport', 'dublin', 'ireland', 'tram'],
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License'
]
)