-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
51 lines (49 loc) · 1.58 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
from setuptools import setup, find_packages
long_description = "\n".join(
(
open("README.rst", encoding="utf-8").read(),
open("CHANGES.txt", encoding="utf-8").read(),
)
)
setup(
name="more.transaction",
version="0.9.dev0",
description="transaction integration for Morepath",
long_description=long_description,
author="Martijn Faassen",
author_email="[email protected]",
keywords="morepath sqlalchemy zodb transaction",
license="BSD",
url="https://github.com/morepath/more.transaction",
namespace_packages=["more"],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Environment :: Web Environment",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: PyPy",
"Development Status :: 5 - Production/Stable",
],
install_requires=[
"setuptools",
"morepath >= 0.15",
"transaction >= 2.4.0",
],
extras_require=dict(
test=[
"pytest >= 2.9.0",
"WebTest >= 2.0.14",
"pytest-remove-stale-bytecode",
],
pep8=["flake8", "black"],
coverage=["pytest-cov"],
),
)