-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 958 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
29
30
31
32
#!/usr/bin/env python
from setuptools import setup
setup(
name="ravenpy",
version="0.1.0",
description=(
"A Python library for authenticating users with the University of "
"Cambridge's Raven authentication service "
"(https://raven.cam.ac.uk/)."),
author="Hal Blackburn",
author_email="[email protected]",
url="https://github.com/ucamhal/ravenpy",
packages=['raven'],
install_requires=[
"pycrypto >=2.6.0, <2.7.0",
],
license="BSD",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Topic :: Internet :: WWW/HTTP",
],
test_suite="test"
)