-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
executable file
·30 lines (28 loc) · 1.03 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
#!/usr/bin/env python
# -*- coding: utf8 -*-
from __future__ import absolute_import
from setuptools import setup
setup(
name='satispy',
version='1.1b1',
description='An interface to SAT solver tools (like minisat)',
author='FÁBIÁN Tamás László',
author_email='[email protected]',
url='https://github.com/netom/satispy/',
download_url='https://github.com/netom/satispy/tarball/1.1b1#egg=satispy-1.1b1',
license='BSD License',
platforms='OS Independent',
packages=['satispy', 'satispy.io', 'satispy.solver'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Plugins',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries'
],
)