Skip to content

Commit

Permalink
added packaging details
Browse files Browse the repository at this point in the history
  • Loading branch information
ronanmu committed Sep 29, 2017
1 parent eff903a commit 1e2b1fd
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
19 changes: 19 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
from distutils.core import setup

setup(
name = 'luas.py',
version = '0.1',
packages = ['luas', 'luas.models'],
url = 'https://github.com/ronanmu/luas.py',
download_url = 'https://github.com/ronanmu/luas.py/tarball/0.1',
license = 'MIT',
requires=['requests'],
author = 'Ronan Murray',
author_email = 'ronanmu@users.noreply.github.com',
description = 'Python module for interacting with Dublin Luas real-time API',
keywords = ['luas', 'transport', 'dublin', 'ireland', 'tram'],
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License'
]
)

0 comments on commit 1e2b1fd

Please sign in to comment.