-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
33 lines (30 loc) · 979 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
26
27
28
29
30
31
32
33
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
requires = [
"matplotlib>=3.5.1",
"networkx>=2.6.3",
"graphviz>=0.20.1"
]
setuptools.setup(
name="aacbr",
version="0.5.0",
author="Guilherme Paulino-Passos",
author_email="[email protected]",
description="CLArg's basic implementation of AA-CBR.",
long_description="file: README.md",
long_description_content_type="text/markdown",
url="https://github.com/CLArg-group/AACBR",
project_urls={
"Bug Tracker": "https://github.com/CLArg-group/AACBR/issues",
},
classifiers=[
" Programming Language :: Python :: 3",
" License :: OSI Approved :: MIT License",
" Topic :: Scientific/Engineering :: Artificial Intelligence",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.10",
install_requires=requires
)