forked from simple-access-layer/source
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 706 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
from os import path
# parse the package version number
with open(path.join(path.dirname(__file__), 'sal/core/VERSION')) as version_file:
VERSION = version_file.read().strip()
setup(
name='sal',
version=VERSION,
packages=find_packages(),
include_package_data=True,
install_requires=['flask', 'flask_restful', 'itsdangerous', 'numpy',
'requests'],
extras_require={"LDAP": ["ldap3"]},
url='https://github.com/simpleaccesslayer',
license='EUPL v1.2',
author='Dr Alex Meakins',
author_email='alex.meakins@ukaea.uk',
description='Simple Access Layer: A general purpose data system framework.'
)