-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (32 loc) · 907 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
#! /usr/bin/env python
from setuptools import setup, find_packages
setup(
name="anesi",
version="0.0.1",
description="A-NeSI: Approximate Neurosymbolic Inference",
url="https://github.com/HEmile/a-nesi",
author="Emile van Krieken",
author_email="e.van.Krieken@vu.nl",
license='MIT',
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
keywords="",
package_dir={"": "anesi"},
packages=find_packages(where="anesi"),
python_requires='>=3.8',
zip_safe=False,
include_package_data=True,
install_requires=[
"torch",
"torchvision",
"wandb"
],
extras_require={
"examples": [],
"tests": ["pytest"],
},
)