-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
48 lines (45 loc) · 2.23 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
43
44
45
46
47
48
from setuptools import setup, find_packages
from pathlib import Path
# with open("README.md", "r") as f:
# long_description = f.read()
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='TraverseCraft',
version='1.0.3',
author='Srajan Chourasia, Varun Patrikar',
author_email='[email protected], [email protected]',
maintainer='Varun Patrikar, Srajan Chourasia',
maintainer_email='[email protected], [email protected]',
description='A Cross-Platform Real-Time Algorithm Simulation Tool',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://harrionparrix.github.io/traversecraft/', # Official website
project_urls={
'Documentation': 'https://harrionparrix.github.io/traversecraft/user-guide/index.html',
'Source': 'https://github.com/srajan-kiyotaka/TraverseCraft/tree/main',
'Tracker': 'https://github.com/srajan-kiyotaka/TraverseCraft/issues',
'Reference': 'https://harrionparrix.github.io/traversecraft/references/world/World.html',
},
package_dir={'': 'src'},
packages=find_packages(where='src'),
include_package_data=True,
python_requires='>=3.6',
install_requires=[
'prettytable',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Education',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Visualization',
],
keywords='algorithms, simulation, real-time, tkinter, education, research, visualization, machine learning, reinforcement learning, artificial intelligence, agent-based modeling, cross-platform, dynamic heatmap, world generation, customizable, interactive, framework, algorithm visualization, graph traversal, tree traversal, grid world',
)