forked from rdegges/python-basicauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (36 loc) · 1.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
from os.path import abspath, dirname, join, normpath
from setuptools import setup
setup(
# Basic package information:
name='basicauth',
version='0.4.0',
py_modules=('basicauth',),
# Packaging options:
zip_safe=False,
include_package_data=True,
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
),
# Package dependencies:
install_requires=['six'],
# Metadata for PyPI:
author='Randall Degges',
author_email='[email protected]',
license='UNLICENSE',
url='https://github.com/rdegges/python-basicauth',
keywords='python security basicauth http',
description='An incredibly simple HTTP basic auth implementation.',
long_description=open(normpath(join(dirname(abspath(__file__)),
'README.md'))).read()
)