forked from wq/django-natural-keys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (46 loc) · 1.38 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
from setuptools import setup
LONG_DESCRIPTION = """
Enhanced support for natural keys in Django and Django REST Framework
"""
def readme():
try:
readme = open('README.md')
except IOError:
return LONG_DESCRIPTION
else:
return readme.read()
setup(
name='natural-keys',
use_scm_version=True,
author='S. Andrew Sheppard',
author_email='[email protected]',
url='https://github.com/wq/django-natural-keys',
license='MIT',
packages=['natural_keys'],
description=LONG_DESCRIPTION.strip(),
long_description=readme(),
long_description_content_type="text/markdown",
install_requires=[
'html-json-forms>=1.0.0',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Topic :: Database',
],
setup_requires=[
'setuptools_scm',
],
)