forked from bastikr/boolean.py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (45 loc) · 1.83 KB
/
Copy pathsetup.py
File metadata and controls
56 lines (45 loc) · 1.83 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
from __future__ import absolute_import
from setuptools import find_packages
from setuptools import setup
long_desc = '''
This library helps you deal with boolean expressions and algebra with variables
and the boolean functions AND, OR, NOT.
You can parse expressions from strings and simplify and compare expressions.
You can also easily create your custom algreba and mini DSL and create custom
tokenizers to handle custom expressions.
For extensive documentation look either into the docs directory or view it online, at
https://booleanpy.readthedocs.org/en/latest/
https://github.com/bastikr/boolean.py
Copyright (c) 2009-2017 Sebastian Kraemer, basti.kr@gmail.com and others
Released under revised BSD license.
'''
setup(
name='boolean.py',
version='3.6',
license='revised BSD license',
description='Define boolean algebras, create and parse boolean expressions and create custom boolean DSL.',
long_description=long_desc,
author='Sebastian Kraemer',
author_email='basti.kr@gmail.com',
url='https://github.com/bastikr/boolean.py',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
test_loader='unittest:TestLoader',
test_suite='boolean.test_boolean',
keywords='boolean expression, boolean algebra, logic, expression parser',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Compilers',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
],
)