-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
25 lines (24 loc) · 888 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
import setuptools
setuptools.setup(
name="pyautosplit",
version="0.8.0",
author="Christoph Stahl",
author_email="christoph.stahl@tu-dortmund.de",
description="A python autosplit module for linux and the livesplit server module",
url="https://github.com/christofsteel/pyautosplit.git",
packages=setuptools.find_packages(),
install_requires=["eventlet", "python-ptrace", "simpleeval"],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Environment :: Console",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Debuggers",
],
python_requires='>=3.7',
entry_points={
'console_scripts': ['pyautosplit=pyautosplit.main:main']
}
)