This repository was archived by the owner on May 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (51 loc) · 1.91 KB
/
Copy pathsetup.py
File metadata and controls
57 lines (51 loc) · 1.91 KB
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
53
54
55
56
57
from os import chdir
from os.path import abspath, dirname, join, normpath
from setuptools import find_packages, setup
with open(join(dirname(__file__), "README.md")) as readme:
README = readme.read()
# allow setup.py to be run from any path
chdir(normpath(abspath(dirname(__file__))))
import simple_svg # noqa
setup(
name="django-simple-svg",
version=simple_svg.__version__,
packages=find_packages(exclude=["test*"]),
include_package_data=True,
license=simple_svg.__license__,
description=simple_svg.__doc__,
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/xshapira/django-simple-svg",
author="Max Shapira",
author_email="max@winoutt.com",
maintainer="Max Shapira",
maintainer_email="max@winoutt.com",
install_requires=["Django>=1.8"],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Plugins",
"Environment :: Web Environment",
# "Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Framework :: Django",
"Framework :: Django :: 2.0",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
test_suite="tests",
)