archive
/
Printr
Archived
1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
Printr/setup.py

20 lines
506 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',
author_email = 'me@theorangeone.net',
url = 'https://github.com/RealOrangeOne/Printr',
license='MIT',
platforms=['any']
)