-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
42 lines (39 loc) · 1.37 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
# -*- coding: utf-8 -*-
from setuptools import setup
from setuptools import find_packages
from txtstyle.version import VERSION
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="TxtStyle",
version=VERSION,
author="Arman Sharif",
author_email="[email protected]",
description="Command-line tool for colorizing output of log files and console programs",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/armandino/TxtStyle",
packages = ["txtstyle"],
license="LICENSE.txt",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Utilities",
],
python_requires=">=3.2, <4",
entry_points={
"console_scripts": ["txts = txtstyle.txts:main"],
},
keywords="color log console text processing",
test_suite="tests",
project_urls={
"Bug Reports": "https://github.com/armandino/TxtStyle/issues",
"Source": "https://github.com/armandino/TxtStyle",
},
)