-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
65 lines (54 loc) · 2 KB
/
setup.py
File metadata and controls
65 lines (54 loc) · 2 KB
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
#!/usr/bin/python3
'''
Setup of core_optimizer Module
'''
import sys
from os import path
from setuptools import setup, find_packages
# check Python version
min_version = (3, 8)
if sys.version_info < min_version:
error = '''
core_optimizer does not support Python {0}.{1}.
Python {2}.{3} and above is required.
Check your Python version like so:
python3 --version
This may be due to an out-of-date pip.
Make sure you have pip >= 9.0.1.
Upgrade pip like so:
pip install --upgrade pip
'''.format(*(sys.version_info[:2] + min_version))
sys.exit(error)
# read README.rst
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as readme_file:
readme = readme_file.read()
# read requirements.txt ignoring any commented-out lines
with open(path.join(here, 'requirements.txt'), encoding='utf-8') as requirements_file:
requirements = [line for line in requirements_file.read().splitlines() if not line.startswith('#')]
# read version
with open('core_optimizer/_version_.py', encoding='utf-8') as f:
exec(f.read())
# define setup
setup(
name = 'core_optimizer',
version = __version__,
description = 'Continual Resilient (CoRe) optimizer for PyTorch',
long_description = readme,
author = 'Marco Eckhoff, Markus Reiher',
author_email = 'lifelong_ml@phys.chem.ethz.ch',
url = 'https://github.com/ReiherGroup/CoRe_optimizer',
python_requires = '>={}'.format('.'.join(str(n) for n in min_version)),
packages = find_packages(include=['core_optimizer', 'core_optimizer.*'],
exclude=['core_optimizer.tests*']),
include_package_data = True,
package_data = {'docs': ['documentation.pdf']},
install_requires = requirements,
license = 'BSD (3-clause)',
classifiers = [
'Programming Language :: Python',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English']
)