-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
61 lines (57 loc) · 1.64 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.md")) as f:
README = f.read()
with open(os.path.join(here, "CHANGES.md")) as f:
CHANGES = f.read()
test_deps = [
"coverage",
"pytest",
"pytest-cov",
"tox",
"mock",
"pyramid",
"webtest",
"pyramid_jinja2",
]
setup(
name="ziggurat_foundations",
version="0.9.0",
description=""" Set of SQLAlchemy mixins that make application building an easy task. Provides users, groups,
permissions, resource tree handling and authorization solutions for Pyramid and Flask frameworks.
""",
long_description_content_type="text/markdown",
long_description=README,
author="Marcin Lulek",
author_email="[email protected]",
url="https://github.com/ergo/ziggurat_foundations",
license="BSD",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Flask",
"Framework :: Pylons",
"Framework :: Pyramid",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
],
packages=find_packages(),
zip_safe=True,
include_package_data=True,
test_suite="ziggurat_foundations.tests",
tests_require=test_deps,
install_requires=[
"sqlalchemy",
"passlib>=1.6.1",
"paginate",
"paginate_sqlalchemy",
"alembic",
"zope.deprecation >= 3.5.0",
"six",
],
setup_requires=["pytest-runner"],
extras_require={
"test": test_deps,
"lint": ["black", "pylint", "rstcheck", "flake8"],
},
)