-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (43 loc) · 1.58 KB
/
setup.py
File metadata and controls
50 lines (43 loc) · 1.58 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
38
39
40
41
42
43
44
45
46
47
48
49
50
# -*- coding: utf-8 -*-
## see https://packaging.python.org/distributing/#setup-py
from setuptools import setup
from codecs import open
import os.path
# all requirements moved to requirements.txt
install_requires = ['six', 'numpy', 'scipy', 'pandas', 'h5py']
extras_require = {}
setup_requires = ['pytest-runner']
tests_require = ['pytest']
pwd = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file
try:
with open(os.path.join(pwd, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
except OSError:
long_description = ''
setup(
name = 'rwa-python',
version = '0.10',
description = 'HDF5-based serialization library for Python datatypes',
long_description = long_description,
url = 'https://github.com/DecBayComp/RWA-python',
author = 'François Laurent',
author_email = 'francois.laurent@pasteur.fr',
license = 'Apache 2.0',
classifiers = [
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
],
packages = ['rwa'],
install_requires = install_requires,
extras_require = extras_require,
)