-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (32 loc) · 1.03 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
from setuptools import setup, find_packages
VERSION = '1.0.1'
DESCRIPTION = 'Manyterm - spawn multiple terminals to print to'
with open('README.md', 'r') as f:
LONG_DESCRIPTION = f.read()
setup(
name='manyterm',
version=VERSION,
author='Tyler Bowers',
author_email='tylerebowers@gmail.com',
license='MIT',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
packages=find_packages(),
python_requires='>=3.8',
install_requires=[],
keywords=['python', 'terminal', 'print'],
classifiers=[
'Topic :: Terminals',
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Natural Language :: English',
],
project_urls={
'Source': 'https://github.com/tylerebowers/manyterm-python',
'PyPI': 'https://pypi.org/project/manyterm/'
}
)