-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
28 lines (26 loc) · 886 Bytes
/
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
import setuptools
with open("README.md") as fp:
long_description = fp.read()
setuptools.setup(
name="django-password-expire",
version="0.2",
description="Django app for forcing password expiration",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/cash/django-password-expire",
author="Cash Costello",
author_email="[email protected]",
license="BSD",
packages=setuptools.find_packages(),
include_package_data=True,
python_requires=">=3.6",
install_requires=["humanize"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Framework :: Django",
]
)