-
Notifications
You must be signed in to change notification settings - Fork 122
/
setup.py
executable file
·53 lines (47 loc) · 1.79 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
53
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
from pathlib import Path
from setuptools import setup
if sys.argv[-1] == "publish":
os.system("python setup.py sdist upload")
sys.exit()
readme = open("README.rst").read()
history = open("HISTORY.rst").read().replace(".. :changelog:", "")
import djangorestframework_camel_case
def extract_requires():
with Path('requirements.txt').open() as reqs:
return [req.strip() for req in reqs if not req.startswith(("#", "--", "-r")) and req.strip()]
setup(
name="djangorestframework-camel-case",
version=djangorestframework_camel_case.__version__,
description="Camel case JSON support for Django REST framework.",
long_description=readme + "\n\n" + history,
long_description_content_type="text/x-rst",
author="Vitaly Babiy",
author_email="vbabiy86@gmail.com",
url="https://github.com/vbabiy/djangorestframework-camel-case",
packages=["djangorestframework_camel_case"],
package_dir={"djangorestframework_camel_case": "djangorestframework_camel_case"},
include_package_data=True,
python_requires=">=3.7",
install_requires=extract_requires(),
license="BSD",
zip_safe=False,
keywords="djangorestframework_camel_case",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.12",
],
test_suite="tests",
)