-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·43 lines (40 loc) · 1.24 KB
/
setup.py
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
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python
# -*- coding: utf8 -*-
from setuptools import setup, find_packages
readme = open("README.md").read()
setup(
name = "deansi",
version = "1.2.1",
description = "ANSI codes to HTML converter",
author = "David García Garzón",
author_email = "[email protected]",
url = 'https://github.com/GuifiBaix/python-deansi',
long_description_content_type='text/markdown',
long_description = readme,
license = 'GNU Affero General Public License v3 or later (AGPLv3+)',
packages=find_packages(exclude=['*[tT]est*']),
py_modules=[
'deansi',
],
entry_points={
'console_scripts': [
'deansi=deansi:main',
]
},
include_package_data = True,
test_suite = 'deansi_test',
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Logging',
'Topic :: Text Processing :: Filters',
'Topic :: Text Processing :: Markup :: HTML',
'Environment :: Console',
'Intended Audience :: Developers',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
],
)