-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
executable file
·53 lines (47 loc) · 1.46 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
49
50
51
52
53
#!/usr/bin/env python3
# To make sure pylint is happy with the tests, run:
# python3 setup.py develop
# every time we add or remove new top-level packages to the project.
import os
from setuptools import setup
def _read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as stream:
return stream.read()
setup(
name='PDP_Solver',
author="Saeed Amizadeh",
author_email="[email protected]",
description="PDP Framework for Neural Constraint Satisfaction Solving",
long_description=_read('./README.md'),
long_description_content_type='text/markdown',
keywords="pdp sat solver pytorch neurosymbolic",
license="MIT",
classifiers=[
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
],
url="https://github/Microsoft/PDP-Solver",
version='0.1',
python_requires=">=3.5",
install_requires=[
"numpy >= 1.10",
"torch >= 0.4",
],
package_dir={"": "src"},
packages=[
"pdp",
"pdp.factorgraph",
"pdp.nn"
],
scripts=[
"src/satyr.py",
"src/satyr-train-test.py",
"src/dimacs2json.py",
"src/pdp/generator.py"
]
)