-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 1.15 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
from pathlib import Path
from osutool import __author__, __doc__, __license__, __module__, __version__
from setuptools import setup
setup(
name=__module__,
version=__version__,
description=(__doc__ or '').split('\n')[0],
long_description=Path('README.md').read_text(),
long_description_content_type='text/markdown',
url=f'https://github.com/{__author__}/{__module__}',
author=__author__,
include_package_data=True,
license=__license__,
packages=[__module__],
package_data={},
install_requires=['colorama==0.4.6'],
setup_requires=['pytest_runner'],
python_requires='>=3.8',
scripts=[],
tests_require=['pytest'],
entry_points={'console_scripts': [f'{__module__}={__module__}:main']},
zip_safe=True,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'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 :: Games/Entertainment',
'Topic :: Utilities',
],
)