-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (38 loc) · 1.29 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
40
41
42
from setuptools import setup, find_packages
__version__ = "0.1.1.post2"
install_requires = [
"numpy>=1.16.2",
"pandas>=0.24.2",
"Pillow>=5.4.1",
"PySide2>=5.12.2"
]
with open("README.md") as f:
long_description = f.read()
setup(
name="algo_battle",
version=__version__,
author="CoderDojo Karlsruhe, Lennart Hensler and Mark Weinreuter",
author_email="[email protected]",
description="Educational Project to let different algorithms compete against each other. Currently only available in German.",
long_description=long_description,
long_description_content_type="text/markdown",
project_urls={
"Source": "https://github.com/coderdojoka/algo-battle"
},
install_requires=install_requires,
python_requires=">=3.5",
packages=find_packages(exclude=["test"]),
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: German",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.5",
"Topic :: Education"
]
)