-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (46 loc) · 1.73 KB
/
Copy pathsetup.py
File metadata and controls
48 lines (46 loc) · 1.73 KB
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
43
44
45
46
47
48
from setuptools import setup
with open('README.md') as fp:
long_description = fp.read()
setup(
name='color-pprint',
version='0.0.3',
url='https://github.com/mccoderpy/color-pprint',
project_urls={
'Source': 'https://github.com/mccoderpy/color-pprint/',
'Support': 'https://discord.gg/sb69muSqsg',
'Issue Tracker': 'https://github.com/mccoderpy/color-pprint/issues'
},
license='MIT',
description='A simple package to pretty-print lists dicts, tuples, etc. with color and highlight. (documentation SOON)',
long_description=long_description,
long_description_content_type='text/markdown',
author='mccoder.py',
author_email='mccuber04@outlook.de',
include_package_data=True,
packages=['color_pprint', 'color_pprint.ansi'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Printing',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Typing :: Typed'
],
install_requires=[
'colorama>=0.3.7',
'multidict>=5.1.0',
'regex>=0.1.20120103'
]
)