|
7 | 7 | os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
|
8 | 8 | setup(
|
9 | 9 | name='django-mirage-field',
|
10 |
| - version='1.2.4', |
| 10 | + version='1.3.0', |
11 | 11 | install_requires=[
|
12 | 12 | "cryptography",
|
13 | 13 | "tqdm",
|
14 | 14 | ],
|
15 | 15 | packages=find_packages(exclude=["tests*"]),
|
16 | 16 | include_package_data=True,
|
17 | 17 | license='MIT License',
|
18 |
| - description='A Django model field that encrypt your data when save to and decrypt when get from database. It keeps data always encrypted in database.', |
| 18 | + description='A Django model fields collection that encrypt your data when save to and decrypt when get from database. It keeps data always encrypted in database.', |
19 | 19 | long_description_content_type="text/markdown",
|
20 | 20 | long_description=README,
|
21 | 21 | url='https://github.com/luojilab/django-mirage-field',
|
|
24 | 24 | classifiers=[
|
25 | 25 | 'Environment :: Web Environment',
|
26 | 26 | 'Framework :: Django',
|
27 |
| - 'Framework :: Django :: 1.8', |
28 |
| - 'Framework :: Django :: 1.9', |
29 |
| - 'Framework :: Django :: 1.10', |
30 |
| - 'Framework :: Django :: 1.11', |
31 |
| - 'Framework :: Django :: 2.0', |
32 |
| - 'Framework :: Django :: 2.1', |
33 | 27 | 'Framework :: Django :: 2.2',
|
34 |
| - 'Framework :: Django :: 3.0', |
| 28 | + 'Framework :: Django :: 3.2', |
| 29 | + 'Framework :: Django :: 4.0', |
35 | 30 | 'Intended Audience :: Developers',
|
36 | 31 | 'License :: OSI Approved :: MIT License',
|
37 | 32 | 'Operating System :: OS Independent',
|
38 | 33 | 'Programming Language :: Python',
|
39 | 34 | 'Programming Language :: Python :: 3.6',
|
| 35 | + 'Programming Language :: Python :: 3.9', |
40 | 36 | 'Topic :: Internet :: WWW/HTTP',
|
41 | 37 | ],
|
42 | 38 | )
|
0 commit comments