-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
41 lines (39 loc) · 1.49 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
from setuptools import setup, find_packages
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='django-easy-docs',
version='2.0.4',
packages=find_packages(exclude=['*.migrations', '*.migrations.*', 'migrations.*', 'migrations', 'docs', 'docs.*']),
url='https://github.com/LewisFletcher/django-easy-docs',
author='Lewis Fletcher',
description='A simple documentation app for Django.',
download_url='https://pypi.org/project/django-easy-docs/',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
keywords=['django', 'documentation', 'docs', 'easy', 'simple'],
author_email='[email protected]',
include_package_data=True,
install_requires=[
'Django>=4.0',
'django-markdownx>=4.0.7',
'django-simple-history>=3.4.0',
'markdown>=3.5.1',
'django-htmx>=1.17.2'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 3.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)