forked from bakery-cg2at/bakery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (40 loc) · 1.43 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
"""
Copyright (C) 2016,2019 Jakub Krajniak <jkrajniak@gmail.com>
This file is part of bakery.
Bakery is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
import setuptools.command.test
from setuptools import (find_packages, setup)
class TestCommand(setuptools.command.test.test):
""" Setuptools test command explicitly using test discovery. """
def _test_args(self):
yield 'discover'
for arg in super(TestCommand, self)._test_args():
yield arg
config = {
'name': 'bakery',
'description': 'Backmapping tool',
'version': '1.0.0',
'author': 'Jakub Krajniak',
'author_email': 'jkrajniak@gmail.com',
'license': 'GPLv3',
'install_requires':[
'networkx==2.0.0',
'enum34',
'mpi4py',
'pathlib2',
'six'
],
'url': 'https://github.com/bakery-cg2at/bakery',
'test_suite': 'src.tests',
}
setup(**config)