-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
79 lines (70 loc) · 2.36 KB
/
setup.py
File metadata and controls
79 lines (70 loc) · 2.36 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import io
import os
import re
from setuptools import find_packages, setup
def fpath(name):
return os.path.join(os.path.dirname(__file__), name)
def read(fname):
return open(fpath(fname)).read()
def desc():
return read("README.rst")
project_urls = {
'Python Rules': 'https://github.com/valhuber/python-rules/wiki'
}
setup(
name="python-rules",
version="0.0.3",
url="https://github.com/valhuber/python-rules",
license="BSD",
author="Val Huber",
author_email="valjhuber@gmail.com",
project_urls=project_urls,
description=(
"Declare multi-table rules for SQLAlchemy update logic -- "
"40X more concise, Python for extensibility."
),
long_description=desc(),
long_description_content_type="text/x-rst",
# packages=find_packages(include=['python_rules']),
packages=['python_rules', 'python_rules.exec_row_logic', 'python_rules.exec_trans_logic', 'python_rules.rule_bank', 'python_rules.rule_type'],
package_data={"": ["LICENSE"]},
include_package_data=True,
zip_safe=False,
platforms="any",
install_requires=[
"apispec[yaml]>=3.3, <4",
"colorama>=0.3.9, <1",
"click>=6.7, <8",
"email_validator>=1.0.5, <2",
"Flask>=0.12, <2",
"Flask-Babel>=1, <2",
"Flask-Login>=0.3, <0.5",
"Flask-OpenID>=1.2.5, <2",
"Flask-SQLAlchemy>=2.4, <3",
"Flask-WTF>=0.14.2, <1",
"Flask-JWT-Extended>=3.18, <4",
"jsonschema>=3.0.1, <4",
"marshmallow>=3, <4",
"marshmallow-enum>=1.5.1, <2",
"marshmallow-sqlalchemy>=0.22.0, <1",
"python-dateutil>=2.3, <3",
"prison>=0.1.3, <1.0.0",
"PyJWT>=1.7.1",
"sqlalchemy-utils>=0.32.21, <1",
],
extras_require={"jmespath": ["jmespath>=0.9.5"]},
tests_require=["nose>=1.0", "mockldap>=0.3.0"],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires="~=3.8"
)