-
-
Notifications
You must be signed in to change notification settings - Fork 239
/
setup.py
93 lines (84 loc) · 3.19 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
90
91
92
93
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""django-nose packaging."""
import os
from codecs import open
from setuptools import setup, find_packages
def get_long_description(title):
"""Create the long_description from other files."""
ROOT = os.path.abspath(os.path.dirname(__file__))
readme = open(os.path.join(ROOT, "README.rst"), "r", "utf8").read()
body_tag = ".. Omit badges from docs"
readme_body_start = readme.index(body_tag)
assert readme_body_start
readme_body = readme[readme_body_start + len(body_tag) :]
changelog = open(os.path.join(ROOT, "changelog.rst"), "r", "utf8").read()
old_tag = ".. Omit older changes from package"
changelog_body_end = changelog.index(old_tag)
assert changelog_body_end
changelog_body = changelog[:changelog_body_end]
bars = "=" * len(title)
long_description = (
"""
%(bars)s
%(title)s
%(bars)s
%(readme_body)s
%(changelog_body)s
_(Older changes can be found in the full documentation)._
"""
% locals()
)
return long_description
setup(
name="django-nose",
use_scm_version={"version_scheme": "post-release"},
setup_requires=["setuptools_scm"],
description="Makes your Django tests simple and snappy",
long_description=get_long_description("django-nose"),
author="Jeff Balogh",
author_email="me@jeffbalogh.org",
maintainer="John Whitlock",
maintainer_email="jwhitlock@mozilla.com",
url="http://github.com/jazzband/django-nose",
license="BSD",
packages=find_packages(exclude=["testapp", "testapp/*"]),
include_package_data=True,
zip_safe=False,
install_requires=["nose>=1.2.1"],
test_suite="testapp.runtests.runtests",
# This blows up tox runs that install django-nose into a virtualenv,
# because it causes Nose to import django_nose.runner before the Django
# settings are initialized, leading to a mess of errors. There's no reason
# we need FixtureBundlingPlugin declared as an entrypoint anyway, since you
# need to be using django-nose to find the it useful, and django-nose knows
# about it intrinsically.
# entry_points="""
# [nose.plugins.0.10]
# fixture_bundler = django_nose.fixture_bundling:FixtureBundlingPlugin
# """,
keywords="django nose django-nose",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 1.8",
"Framework :: Django :: 1.9",
"Framework :: Django :: 1.10",
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.0",
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Testing",
],
)