-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
48 lines (44 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(
name='dj_anonymizer',
packages=['dj_anonymizer'],
include_package_data=True,
version='0.6.1',
description='dj_anonymizer is a utility designed to anonymize '
+ 'production databases with various types of mock data, '
+ 'specifically designed for use within Django projects.',
long_description=(read('README.md')),
long_description_content_type='text/markdown',
license='MIT',
author='Tim Pagurets',
url='https://github.com/preply/dj_anonymizer',
keywords=['django', 'data', 'database', 'anonymization', 'dj-anonymizer'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Framework :: Django',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5.0',
'Topic :: Database'
],
install_requires=[
'Django>=4.2',
]
)