forked from clapeyre/h5nav
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (47 loc) · 1.37 KB
/
setup.py
File metadata and controls
52 lines (47 loc) · 1.37 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
from codecs import open
from os.path import isfile, join, abspath, dirname
with open("README.md", encoding='utf-8') as f:
long_description = f.read()
setup(
name="h5nav",
version="0.1.6",
packages=find_packages(exclude=['docs']),
entry_points={
'console_scripts': [
'h5nav = h5nav.cli:main',
],
},
install_requires=[
'numpy>=1.10',
'h5py>=2.5',
],
extras_require={
'dev': [
'pytest',
'pytest-cov',
],
},
# metadata
author="Corentin J. Lapeyre",
author_email="corentin.lapeyre@gmail.com",
description="hdf5 file interactive navigation and editing tool",
long_description=long_description,
long_description_content_type='text/markdown',
license="MIT",
url="https://github.com/clapeyre/h5nav",
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
keywords='h5py interactive',
project_urls={
'Say Thanks!': 'http://saythanks.io/to/example',
'Source': "https://github.com/clapeyre/h5nav",
},
)