forked from Substra/substra-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (28 loc) · 911 Bytes
/
setup.py
File metadata and controls
34 lines (28 loc) · 911 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
28
29
30
31
32
33
34
from codecs import open
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
about = {}
with open(os.path.join(here, 'substratools', '__version__.py'),
'r', 'utf-8') as fp:
exec(fp.read(), about)
setup(
name='substratools',
version=about['__version__'],
description='Python tools to submit algo on the Substra platform',
author='Owkin',
author_email='fldev@owkin.com',
license='Apache 2.0',
packages=find_packages(),
install_requires=[],
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering'
],
setup_requires=['pytest-runner'],
tests_require=['flake8', 'pytest', 'pytest-cov', 'pytest-mock'],
zip_safe=False
)