-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 946 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 946 Bytes
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
import os.path as path
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
# parse the package version number
with open(path.join(path.dirname(__file__), 'tomotok/core/VERSION')) as version_file:
version = version_file.read().strip()
setup(
name='tomotok',
version=version,
license='EUPL 1.2',
author='Jakub Svoboda, Jordan Cavalier, Ondrej Ficker, Martin Imrisek et al.',
author_email='svoboda@ipp.cas.cz',
description='Collection of algorithms used for tokamak plasma tomography',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/tomotok/core',
packages=find_packages(),
namespace_packages=['tomotok'],
include_package_data=True,
python_requires='>=3.5',
install_requires=['numpy>=1.13.3', 'scipy>=1.1.0', 'matplotlib>=2.2.2', 'h5py>=2.7.1'],
)