-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (27 loc) · 991 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="ssaa",
version="0.01",
description="A library to generate propositional formulas that represent",
long_description=open('README.rst').read(),
author="Rafael Carrascosa",
author_email="rafacarrascosa@gmail.com",
url="https://github.com/rafacarrascosa/ssaa",
keywords=["propositional logic", "propositional formula", "arithmetic",
"sat", "propositional", "generator", "formula", "logic",
"arithmetics",],
classifiers=[
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Utilities",
],
packages=["ssaa"],
install_requires=open('requirements.txt').read().split(),
)