-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
setup.py
52 lines (47 loc) · 2.03 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 find_packages, setup
from martor import __AUTHOR__, __AUTHOR_EMAIL__, __VERSION__
def get_requirements():
return open("requirements.txt").read().splitlines()
setup(
name="martor",
version=__VERSION__,
packages=find_packages(exclude=["*demo"]),
include_package_data=True,
zip_safe=False,
description="Django Markdown Editor",
url="https://github.com/agusmakmun/django-markdown-editor",
download_url="https://github.com/agusmakmun/django-markdown-editor/tarball/v%s"
% __VERSION__,
keywords=["martor", "django markdown", "django markdown editor"],
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
license="GNUGPL-v3",
author=__AUTHOR__,
author_email=__AUTHOR_EMAIL__,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: JavaScript",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
install_requires=get_requirements(),
project_urls={
"Documentation": "https://github.com/agusmakmun/django-markdown-editor?tab=readme-ov-file#installation",
"Release notes": "https://github.com/agusmakmun/django-markdown-editor/releases",
"Funding": "https://www.paypal.com/paypalme/summonagus",
"Source": "https://github.com/agusmakmun/django-markdown-editor",
"Issue Tracker": "https://github.com/agusmakmun/django-markdown-editor/issues",
},
)