-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
66 lines (64 loc) · 2.21 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
import re
from setuptools import setup
with open('README.md', 'r') as fh:
description = fh.read()
# Patch the relative links so they'll work on PyPI.
description2 = re.sub(
r']\(([\w/.-]+\.png)\)',
r'](https://github.com/CovertLab/borealis/raw/master/\1)',
description)
long_description = re.sub(
r']\(([\w/.-]+)\)',
r'](https://github.com/CovertLab/borealis/blob/master/\1)',
description2)
setup(
name='borealis-fireworks',
version='0.12.0',
packages=['borealis', 'borealis.util'],
url='https://github.com/CovertLab/borealis',
project_urls={
'Source': 'https://github.com/CovertLab/borealis',
'Documentation': 'https://github.com/CovertLab/borealis#borealis',
'Changelog': 'https://github.com/CovertLab/borealis/blob/master/docs/changes.md',
},
license='MIT',
author='Jerry Morrison',
author_email='[email protected]',
description='Run FireWorks workflows in Google Cloud',
long_description=long_description,
long_description_content_type='text/markdown',
python_requires='>=3.8, <4',
install_requires=[
'google-cloud-logging>=2.0.0',
'google-cloud-storage>=1.28.0',
'docker>=4.1.0',
'FireWorks>=1.9.7',
'requests>=2.22.0',
'ruamel.yaml>=0.16.9',
],
package_data={
'borealis': ['setup/*'],
},
entry_points={
'console_scripts': [
'fireworker=borealis.fireworker:cli',
'gce=borealis.gce:cli',
],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
keywords='fireworks workflow',
)