forked from glotzerlab/signac-flow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
71 lines (58 loc) · 1.84 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
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the BSD 3-Clause License.
import os
from setuptools import setup, find_packages
requirements = [
# The core package.
'signac>=1.0.0',
# For the templated generation of (submission) scripts.
'jinja2>=2.8',
# To enable the parallelized execution of operations across processes.
'cloudpickle',
# Deprecation management
'deprecation>=2',
]
description = "Simple workflow management for signac projects."
try:
this_path = os.path.dirname(os.path.abspath(__file__))
fn_readme = os.path.join(this_path, 'README.md')
with open(fn_readme) as fh:
long_description = fh.read()
except (IOError, OSError):
long_description = description
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='signac-flow',
version='0.8.0',
packages=find_packages(),
include_package_data=True,
zip_safe=True,
author='Carl Simon Adorf',
author_email='[email protected]',
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://signac.io",
keywords='workflow management signac framework database',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering :: Physics",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
entry_points={
'console_scripts': [
'flow = flow.__main__:main',
],
},
scripts=[
'bin/simple-scheduler',
],
install_requires=requirements,
python_requires='>=3.5, <4',
)