forked from thomasballinger/fmtstr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 650 Bytes
/
setup.py
File metadata and controls
19 lines (18 loc) · 650 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
setup(name='fmtstr',
version='0.0.9',
description='string-like objects marked up with terminal formatting',
url='https://github.com/thomasballinger/fmtstr',
author='Thomas Ballinger',
author_email='thomasballinger@gmail.com',
license='MIT',
packages=['fmtstr'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python',
],
zip_safe=False)