19 lines
456 B
Python
19 lines
456 B
Python
|
from distutils.core import setup
|
||
|
|
||
|
LONG_DESCRIPTION = None
|
||
|
try:
|
||
|
LONG_DESCRIPTION = open('README.md').read()
|
||
|
except:
|
||
|
pass
|
||
|
|
||
|
setup(
|
||
|
name = 'Printr',
|
||
|
packages = ['printr'],
|
||
|
version = '0.0.1',
|
||
|
description = 'Python module to allow a print line to be updated after printing',
|
||
|
long_description = LONG_DESCRIPTION
|
||
|
author = 'Jake Howard',
|
||
|
url = 'https://github.com/RealOrangeOne/Printr',
|
||
|
license='MIT',
|
||
|
platforms=['any']
|
||
|
)
|