Skip to content

Commit

Permalink
restructure for PyPI upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Roberts committed Apr 14, 2014
1 parent a9fa7de commit cb60c73
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 0 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
24 changes: 24 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

'''
setup.py
(c) Will Roberts 14 April, 2014
distutils setup script for pytimeparse.
'''

from distutils.core import setup

with open('README.rst') as file:
long_description = file.read()

setup(name = 'pytimeparse',
version = '1.0',
description = 'Time expression parser',
author = 'Will Roberts',
author_email = '[email protected]',
url = 'https://github.com/wroberts/pytimeparse',
packages = ['pytimeparse'],
long_description = long_description,
)

0 comments on commit cb60c73

Please sign in to comment.