-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (49 loc) · 1.7 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
49
50
51
52
from setuptools import setup
import sys
from taggit_bulk.version import __version__ as version
with open("README.rst", "r") as fp:
description = fp.read() + "\n"
setup(
name="django-taggit-bulk",
version=version,
description="Bulk update of tags",
long_description=description,
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
'Development Status :: 4 - Beta',
"Framework :: Django",
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
],
keywords="django taggit admin bulk",
license='LGPL',
packages=['taggit_bulk'],
package_data={
'taggit_bulk': ['templates/taggit_bulk/wizard/form.html']
},
include_package_data=True,
zip_safe=False,
install_requires=[
"django",
"django-taggit",
"django-formtools" if sys.version_info.major > 2 else "django-formtools<=2.1",
"six",
],
)