-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (44 loc) · 1.61 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
#!/usr/bin/env python
# Standard library modules.
import os
# Third party modules.
from setuptools import setup, find_packages
# Local modules.
import versioneer
# Globals and constants variables.
BASEDIR = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the relevant file
with open(os.path.join(BASEDIR, 'README.rst'), 'r') as f:
long_description = f.read()
PACKAGES = find_packages()
CMDCLASS = versioneer.get_cmdclass()
INSTALL_REQUIRES = ['pyHMSA', 'matplotlib', 'matplotlib_colorbar',
'matplotlib_scalebar', 'scipy']
EXTRAS_REQUIRE = {'develop': ['nose', 'coverage']}
setup(name='pyHMSA-plot',
version=versioneer.get_version(),
description='Plot data from HMSA specification',
long_description=long_description,
author='Philippe Pinard',
author_email='philippe.pinard@gmail.com',
maintainer='Philippe Pinard',
maintainer_email='philippe.pinard@gmail.com',
url='http://pyhmsa.readthedocs.org',
license='MIT',
keywords='microscopy microanalysis hmsa file format',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Physics',
],
packages=PACKAGES,
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
zip_safe=True,
test_suite='nose.collector',
cmdclass=CMDCLASS,
)