This repository was archived by the owner on Sep 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1.29 KB
/
setup.py
File metadata and controls
37 lines (35 loc) · 1.29 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
"""A setuptools based setup module for MSI data access."""
from setuptools import setup, find_packages
setup(
name='spectre-data',
version='0.0.0',
description='Framework for unified data access',
url='https://github.com/spectre-team/spectre-data',
author='Grzegorz Mrukwa',
author_email='Grzegorz.Mrukwa@polsl.pl',
classifiers=[
# based on https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry'
],
packages=find_packages(exclude=['test']),
# @gmrukwa: https://packaging.python.org/discussions/install-requires-vs-requirements/
install_requires=[
'numpy>=1.12.1',
'tqdm>=4.11.2',
'typing>=3.6.2',
'pyimzml>=1.2.0'
],
python_requires='>=3.4',
package_data={
}
)