-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (33 loc) · 1.32 KB
/
setup.py
File metadata and controls
46 lines (33 loc) · 1.32 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
import sys
import os
import setuptools
from setuptools import setup
# Get version and release info, which is all stored in shablona/version.py
ver_file = os.path.join('eisy', 'version.py')
with open(ver_file) as f:
exec(f.read())
# Give setuptools a hint to complain if it's too old a version
# 24.2.0 added the python_requires option
# Should match pyproject.toml
# SETUP_REQUIRES = ['setuptools >= 24.2.0']
#
# # This enables setuptools to install wheel on-the-fly
#
# SETUP_REQUIRES += ['wheel'] if 'bdist_wheel' in sys.argv else []
setup(name='eisy',
description='A package for classification of impedance\
spectroscopy data',
description_content_type='text/markdown; \
charset=UTF-8; variant=GFM',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown; \
charset=UTF-8; variant=GFM',
url='https://github.com/EISy-as-Py/eisy',
license='MIT',
author='Maria Polit, Abdul Moeez, David Hurt,\
Mihyun Kim, Yao-Yu Li',
python_requires='>=3.5',
packages=setuptools.find_packages())
classifiers = ("Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent")