19 lines
No EOL
464 B
Python
19 lines
No EOL
464 B
Python
from distutils.core import setup
|
|
|
|
LONG_DESCRIPTION = None
|
|
try:
|
|
LONG_DESCRIPTION = open('README.md').read()
|
|
except:
|
|
pass
|
|
|
|
setup(
|
|
name = 'Python-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']
|
|
) |