-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.26 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
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='ucam-wls',
version='0.0.2',
author="Edwin Bahrami Balani",
author_email="[email protected]",
license="MIT",
description="A web login service library for the Ucam-WebAuth (WAA2WLS) protocol",
long_description=long_description,
long_description_content_type='text/x-rst',
url="https://github.com/edwinbalani/ucam-wls",
packages=find_packages(exclude=["tests"]),
install_requires=[
'cryptography',
],
python_requires='>=3',
classifiers=[
'Programming Language :: Python :: 3',
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Security',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Systems Administration :: Authentication/Directory',
],
keywords="cambridge university raven login authentication waa2wls ucam "
"webauth ucam-webauth wls",
)