-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (42 loc) · 1.19 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
#!/usr/bin/env python
import os
from setuptools import setup
with open('hoomd_flowws/version.py') as version_file:
exec(version_file.read())
module_names = [
'Damasceno2017Interaction',
'DEMInteraction',
'Dshemuchadse2021LJGInteraction',
'Dshemuchadse2021OPPInteraction',
'Init',
'Interaction',
'Run',
'RunHPMC',
'ShapeDefinition',
]
flowws_modules = []
for name in module_names:
flowws_modules.append('{0} = hoomd_flowws.{0}:{0}'.format(name))
flowws_modules.append(
'hoomd_flowws.{0} = hoomd_flowws.{0}:{0}'.format(name))
setup(name='hoomd_flowws',
author='Matthew Spellings',
author_email='matthew.p.spellings@gmail.com',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
description='Stage-based scientific workflows using HOOMD-Blue',
entry_points={
'flowws_modules': flowws_modules,
},
extras_require={},
install_requires=['flowws'],
license='MIT',
packages=[
'hoomd_flowws',
],
python_requires='>=3',
version=__version__
)