-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
49 lines (45 loc) · 1.43 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
# --------------------------------------------
# Copyright 2019, Grant Viklund
# @Author: Grant Viklund
# @Date: 2019-1-22 13:50:49
# --------------------------------------------
from os import path
from setuptools import setup, find_packages
file_path = path.abspath(path.dirname(__file__))
with open(path.join(file_path, "README.md"), encoding="utf-8") as f:
long_description = f.read()
package_metadata = {
"name": "django-react-tools",
"version": "0.2.15",
"description": "Tools for helping integrate ReactJS into a Django project.",
"long_description": long_description,
"url": "https://github.com/renderbox/django-react-tools",
"author": "Grant Viklund",
"author_email": "[email protected]",
"license": "",
"classifiers": [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
}
setup(
**package_metadata,
packages=find_packages(),
python_requires=">=3.6",
install_requires=[
"Django>=2.1,<4.1",
"requests",
],
extras_require={
"dev": [],
"test": [],
"prod": [],
"build": [],
"docs": ["coverage==4.4.1", "Sphinx==1.6.4"],
}
)