-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (40 loc) · 1.48 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
#!/usr/bin/env python
# Standard library modules.
import os
# Third party modules.
from setuptools import setup, find_packages
import versioneer
# Local modules.
# Globals and constants variables.
BASEDIR = os.path.abspath(os.path.dirname(__file__))
setup(name='pyHMSA-afm',
version=versioneer.get_version(),
description='Interface between pyHMSA and AFM specific file formats',
author='Philippe Pinard',
author_email='philippe.pinard@gmail.com',
url='http://pyhmsa.readthedocs.org',
license='MIT',
keywords='microscopy microanalysis hmsa file format user interface afm',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Physics',
],
packages=find_packages(),
install_requires=['pyHMSA', 'numpy'],
tests_require=['nose', 'coverage'],
zip_safe=False,
test_suite='nose.collector',
cmdclass=versioneer.get_cmdclass(),
entry_points=\
{'pyhmsa.fileformat.importer':
['AFM asc = pyhmsa_afm.fileformat.importer.asc:ImporterAFMAsc', ],
},
)