-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathsetup.py
70 lines (62 loc) · 2.21 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env python
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-2020 Sebastian Kraemer, basti.kr@gmail.com and others
SPDX-License-Identifier: BSD-2-Clause
"""
setup(
name="boolean.py",
version="4.0",
license="BSD-2-Clause",
description="Define boolean algebras, create and parse boolean "
"expressions and create custom boolean DSL.",
long_description=long_desc,
long_description_content_type="text/x-rst",
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 :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
],
extras_require={
"testing":
[
"pytest >= 6, != 7.0.0",
"pytest-xdist >= 2",
"twine",
"black",
"isort",
"pycodestyle",
],
"docs":
[
"Sphinx >= 3.3.1",
"sphinx-rtd-theme >= 0.5.0",
"doc8 >= 0.8.1",
"sphinxcontrib-apidoc >= 0.3.0",
],
}
)