-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (36 loc) · 1002 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
34
35
36
37
38
39
40
41
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='Csp-Solver',
version='0.4',
url='https://github.com/dmr/csp-solver',
license='MIT',
author='Daniel Rech',
author_email='[email protected]',
description=(
'A wrapper library for python to solve a Constraint '
'Satisfaction Problem with sugar '
'(http://bach.istc.kobe-u.ac.jp/sugar/) and minisat2 '
'(http://minisat.se/MiniSat.html)'),
long_description=open('README.md').read(),
py_modules= ['csp_solver'],
entry_points={
'console_scripts': [
'csp_solver = csp_solver:main',
],
},
install_requires=[
'argparse',
'which',
'subprocess32',
#'spec' # for tests
],
zip_safe=False,
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
],
)