forked from BetterWorks/django-anonymizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·43 lines (38 loc) · 1.34 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(
name = "django-anonymizer",
version = '0.5.0.4-bw',
packages = find_packages(),
include_package_data = True,
author = "Luke Plant",
author_email = "[email protected]",
url = "https://bitbucket.org/spookylukey/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.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Framework :: Django",
"Topic :: Software Development :: Testing",
"Topic :: Database"
],
install_requires = ['faker >= 0.0.4-bw'],
)