-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
38 lines (35 loc) · 1.22 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
from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst')) as f:
long_description = f.read()
version = '1.1.0'
setup(
name='nanonispy',
version=version,
description='Library to parse Nanonis files.',
long_description=long_description,
url='https://github.com/underchemist/nanonispy',
author='Yann-Sebastien Tremblay-Johnston',
author_email='[email protected]',
license='MIT',
platforms=['any'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
keywords='science numpy parse library',
python_requires='>=3.6',
packages=['nanonispy'],
package_data={'nanonispy': ['LICENSE', 'README.md'], },
install_requires=['numpy', ],
tests_require=['nose', 'coverage', ],
include_package_data=True,
)