-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.py
34 lines (33 loc) · 1.14 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
from setuptools import setup
setup(
name="arybo",
version="1.1.0",
author="Adrien Guinet",
author_email="[email protected]",
description="Manipulation, canonicalization and identification of mixed boolean-arithmetic symbolic expressions",
packages=["arybo", "arybo.lib", "arybo.tools"],
install_requires=[
"networkx==2.4",
"pytanque >= 1.0",
"six"
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Topic :: Security',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='symbolic computation canonicalization boolean-arithmetic expressions',
license='BSD',
url = "https://github.com/quarkslab/arybo",
download_url = "https://github.com/quarkslab/arybo/releases",
scripts=["bin/iarybo"]
)