-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
44 lines (38 loc) · 1.32 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
from setuptools import setup
def read_requirements():
with open('requirements.txt') as f:
return [line.strip() for line in f.readlines()]
def read_readme():
with open('./README.md', encoding='utf-8') as f:
return f.read()
setup(
name='openPMD-validator',
version='1.1.0.6',
url='https://github.com/openPMD/openPMD-validator',
# author=..., # TODO
# author_email=..., # TODO
# maintainer=..., # TODO
# maintainer_email=..., # TODO
license='ISC',
install_requires=read_requirements(),
description='Validator and examples for openPMD format',
long_description=read_readme(),
long_description_content_type='text/markdown',
classifiers=[
# 'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: ISC License (ISCL)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Physics',
],
packages=['openpmd_validator'],
entry_points={
'console_scripts': [
'openPMD_check_h5 = openpmd_validator.check_h5:main',
'openPMD_createExamples_h5 = openpmd_validator.createExamples_h5:main',
]
},
)