-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
44 lines (41 loc) · 1.36 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
setup(
name='ymmsl',
version='0.13.2-dev',
description="Python bindings for the YAML version of the Multiscale Modeling and Simulation Language",
long_description=readme + '\n\n',
author="Lourens Veen",
author_email='l.veen@esciencecenter.nl',
url='https://github.com/multiscale/ymmsl-python',
packages=[
'ymmsl',
],
package_dir={'ymmsl':
'ymmsl'},
include_package_data=True,
license="Apache Software License 2.0",
zip_safe=False,
keywords='yMMSL multiscale modeling simulation YAML',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
python_requires='>=3.7, <4',
test_suite='tests',
install_requires=[
'yatiml>=0.11.1,<0.12.0'
],
)