-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
101 lines (90 loc) · 3.11 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from collections import defaultdict
import setuptools
import sys
PYTHON_REQUIRED = (3, 4)
PYTHON_INSTALLED = sys.version_info[:2]
if PYTHON_INSTALLED < PYTHON_REQUIRED:
sys.stderr.write('''
`ignite_ml` is not compatible with Python {}.{}!
Use Python {}.{} or above.
'''.format(
PYTHON_INSTALLED[0],
PYTHON_INSTALLED[1],
PYTHON_REQUIRED[0],
PYTHON_REQUIRED[1],
)
)
sys.exit(1)
def is_a_requirement(line):
return not any([
line.startswith('#'),
line.startswith('-r'),
len(line) == 0,
])
requirement_sections = [
'install',
'setup',
'tests',
'docs',
]
requirements = defaultdict(list)
for section in requirement_sections:
with open(
'requirements/{}.txt'.format(section),
'r',
encoding='utf-8',
) as requirements_file:
for line in requirements_file.readlines():
line = line.strip('\n')
if is_a_requirement(line):
requirements[section].append(line)
with open('README.md', 'r', encoding='utf-8') as readme_file:
long_description = readme_file.read()
setuptools.setup(
name='ignite_ml',
version='0.0.1',
python_requires='>={}.{}'.format(*PYTHON_REQUIRED),
author='Anton Dmitriev',
author_email='[email protected]',
description='Apache Ignite ML Python API',
long_description=long_description,
long_description_content_type='text/markdown',
url=(
'https://github.com/apache/ignite/tree/master'
'/modules/ml/python'
),
packages=setuptools.find_packages(),
install_requires=requirements['install'],
tests_require=requirements['tests'],
setup_requires=requirements['setup'],
extras_require={
'docs': requirements['docs'],
},
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
'Intended Audience :: Developers',
'Topic :: Database :: Front-Ends',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
)