-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
setup.py
executable file
·89 lines (74 loc) · 2.34 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/usr/bin/env python
import os
import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
from jsonmodels import __author__, __email__, __version__
PROJECT_NAME = "jsonmodels"
if sys.argv[-1] == "publish":
os.system("python setup.py sdist upload")
sys.exit()
class PyTest(TestCommand):
user_options = [("pytest-args=", "a", "Arguments to pass to py.test")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = ["--cov", PROJECT_NAME]
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import pytest
errno = pytest.main(self.pytest_args)
sys.exit(errno)
# Hacking tests.
try:
import tests
except ImportError:
pass
else:
if "test" in sys.argv and "--no-lint" in sys.argv:
tests.LINT = False
del sys.argv[sys.argv.index("--no-lint")]
if "test" in sys.argv and "--spelling" in sys.argv:
tests.CHECK_SPELLING = True
del sys.argv[sys.argv.index("--spelling")]
readme = open("README.rst").read()
history = open("HISTORY.rst").read().replace(".. :changelog:", "")
setup(
name=PROJECT_NAME,
version=__version__,
description="Models to make easier to deal with structures that"
" are converted to, or read from JSON.",
long_description=readme + "\n\n" + history,
author=__author__,
author_email=__email__,
url="https://github.com/jazzband/jsonmodels",
packages=[
PROJECT_NAME,
],
package_dir={PROJECT_NAME: PROJECT_NAME},
include_package_data=True,
install_requires=[
"python-dateutil",
],
license="BSD",
zip_safe=False,
keywords=PROJECT_NAME,
python_requires=">=3.8",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3 :: Only",
],
cmdclass={
"test": PyTest,
},
)