-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
executable file
·46 lines (40 loc) · 1.43 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
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(
name="django-anonymizer",
version='0.5.0.16-bw',
packages=find_packages(exclude=['*.tests']),
include_package_data=True,
author="Luke Plant",
author_email="[email protected]",
maintainer="David Stensland",
maintainer_email="[email protected]",
url="https://github.com/betterworks/django-anonymizer",
description="App to anonymize data in Django models.",
long_description=(read('README.rst') + "\n\n" + read('CHANGES.rst')),
license="MIT",
keywords="django data database anonymize private",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Framework :: Django",
"Topic :: Software Development :: Testing",
"Topic :: Database"
],
install_requires=[
'Faker >= 0.7.7',
'django >= 1.8.0',
'six >= 1.10.0'],
)