- Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
15 lines (14 loc) · 480 Bytes
/
Copy pathsetup.py
File metadata and controls
15 lines (14 loc) · 480 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
fromsetuptoolsimportsetup
setup(
name='draftlog',
version='2.0.9',
description='Create updatable log lines into the terminal.',
url='https://github.com/kepoorhampond/python-draftlog',
author='Kepoor Hampond',
author_email='kepoorh@gmail.com',
license='MIT',
packages= ['draftlog'],
install_requires= [
'colorama'# This package will ensure ANSI support for windows cmd
],
)