-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (33 loc) · 986 Bytes
/
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
import sys
from setuptools import setup, find_packages
from colored_print import __version__
if sys.version_info[0] < 3:
with open('README.rst') as f:
long_description = f.read()
else:
with open('README.rst', encoding='utf-8') as f:
long_description = f.read()
setup(
name='python_colored_print',
version=__version__,
description='A simple python library in order to print in different colors'
'and save them into a file optionally.',
long_description=long_description,
url='https://github.com/agn-7/colored-print',
author='agn-7',
author_email='benyaminjmf@gmail.com',
license='MIT',
packages=find_packages(),
keywords=[
'log',
'logging',
'python3',
'python',
],
download_url=f"https://github.com/agn-7/colored-print/archive/refs/tags/v{__version__}.zip",
install_requires=[
],
classifiers=[
'Programming Language :: Python :: 3',
],
)