-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 779 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (28 loc) · 779 Bytes
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
from setuptools import setup, find_packages
from wterm import __version__
with open('README.md', 'r') as readme:
README = readme.read()
setup(
name='wterm',
version=__version__,
author='Spriithy',
license='gpl-3.0',
python_requires='>=3.6',
install_requires=[],
packages=find_packages(),
description='Lightweight terminal colors and logging interface',
long_description_content_type='text/markdown',
long_description=README,
url='https://github.com/Spriithy/wterm/',
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
],
keywords=[
'terminal',
'console',
'logging',
'colors',
],
)