-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 1.2 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
from pathlib import Path
from setuptools import setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
VERSION = '0.0.1'
DESCRIPTION = 'The Printer package provides a simple way to print messages with ANSI colors and styles in Python.'
PACKAGE_NAME = 'printstyler'
AUTHOR = 'Jean Olmedillo'
EMAIL = '[email protected]'
GITHUB_URL = 'https://github.com/Jmofuture/printstyler'
setup(
name='printstyler',
version='0.2.3',
packages=[PACKAGE_NAME],
description=DESCRIPTION,
long_description=long_description,
long_description_content_type='text/markdown',
author=AUTHOR,
author_email=EMAIL,
url=GITHUB_URL,
keywords=[
'print', 'printer', 'printstyler',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
python_requires='>=3.8',
test_suite='tests',
)