-
Notifications
You must be signed in to change notification settings - Fork 347
/
setup.py
56 lines (48 loc) · 1.81 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
import sys
from setuptools import find_packages
from setuptools import setup
from setuptools.command.test import test as TestCommand
from registration import get_version
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(self.test_args)
sys.exit(errno)
setup(
name="django-registration-redux",
version=get_version().replace(" ", "-"),
description="An extensible user-registration application for Django",
long_description=open("README.rst").read(),
author="Andrew Cutler",
author_email="[email protected]",
url="https://github.com/macropin/django-registration",
package_dir={"registration": "registration"},
packages=find_packages(exclude="test_app"),
tests_require=["pytest-django"],
cmdclass={"test": PyTest},
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"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",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
],
)