restructure for PyPI upload

This commit is contained in:
Will Roberts 2014-04-14 15:07:16 +02:00
parent a9fa7de82d
commit cb60c73c52
5 changed files with 24 additions and 0 deletions

24
setup.py Normal file
View File

@ -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 = 'wildwilhelm@gmail.com',
url = 'https://github.com/wroberts/pytimeparse',
packages = ['pytimeparse'],
long_description = long_description,
)