-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
31 lines (28 loc) · 1.1 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
from setuptools import setup, find_packages
with open('README.md') as readme:
long_description = readme.read()
setup(
name="django-pin-passcode",
packages=find_packages(),
include_package_data=True, # declarations in MANIFEST.in
version="0.3.1",
author="Eric Carmichael",
author_email="[email protected]",
description="A simple django app that provides site-wide easy password authentication for 1 user",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/ckcollab/django-pin-passcode",
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)