-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (31 loc) · 1.19 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
import pyddlib
from setuptools import setup
import os
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename), 'r').read()
setup(
name = 'pyddlib',
version = pyddlib.__version__,
author = 'Thiago P. Bueno',
author_email = 'thiago.pbueno@gmail.com',
description = 'pyddlib is a Python3 library for manipulating decision diagrams (DD).',
long_description = read('README.rst'),
license = 'GNU General Public License v3.0',
keywords = ['decision diagrams', 'BDD', 'ADD', 'symbolic', 'boolean', 'data structure'],
url = 'https://github.com/thiagopbueno/pyddlib',
packages = ['pyddlib', 'tests'],
zip_safe = False,
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)