-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
45 lines (41 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.txt')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
version = '3.0.dev.0'
setup(name='repoze.filesafe',
version=version,
description='Transaction-aware file creation',
long_description=README + "\n\n" + CHANGES,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
keywords='transaction wsgi repoze',
author="Wichert Akkerman",
author_email="[email protected]",
url="http://docs.repoze.org/filesafe/",
license="BSD-derived (http://www.repoze.org/LICENSE.txt)",
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
namespace_packages=['repoze'],
zip_safe=False,
install_requires=['transaction', 'six'],
test_suite = "repoze.filesafe",
entry_points="""
[paste.filter_factory]
filesafe = repoze.filesafe:filesafe_filter_factory
[paste.filter_app_factory]
filesafe = repoze.filesafe:filesafe_filter_app_factory
""",
)