-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·33 lines (30 loc) · 979 Bytes
/
setup.py
File metadata and controls
executable file
·33 lines (30 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/python3
from setuptools import setup, find_packages
readme = '\n'.join((
open(filename).read()
for filename in (
"README.rst",
"CHANGES.rst",
)))
setup(
name = "consolemsg",
version = "0.3.2",
description = "Simple semantic functions for colorfull console messages",
author = "David Garcia Garzon",
author_email = "voki@canvoki.net",
url = 'https://github.com/GuifiBaix/python-consolemsg',
long_description = readme,
license = 'GNU General Public License v3 or later (GPLv3+)',
py_modules = [ 'consolemsg' ],
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2',
'Environment :: Console',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
],
)