-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 701 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 701 Bytes
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
from setuptools import setup
setup(
name='UnlimitID',
packages=['UnlimitID',
'UnlimitID.IdP',
'UnlimitID.User'],
version='0.1',
description='An implementation of UnlimitID',
author='Panagiotis Moullotou',
author_email='p.moullotou.16@ucl.ac.uk',
url='https://github.com/moullos/UnlimitID',
download_url='https://github.com/moullos/UnlimitID/archive/0.1.tar.gz',
classifiers=[],
include_package_data=True,
install_requires=[
'flask==1.0',
'Flask-OAuthlib',
'Flask-SQLAlchemy==2.1',
'petlib',
'wtforms',
'Flask-WTF==0.14'
],
tests_require=[
'pytest', 'tox'
],
)