-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
40 lines (35 loc) · 1.14 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
39
40
#! /usr/bin/env python
import os
import pathlib
from setuptools import setup
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / 'README.md').read_text()
# get __version__ from _version.py
ver_file = os.path.join('ICC', '_version.py')
with open(ver_file) as f:
exec(f.read())
# This call to setup() does all the work
setup(
name='icc',
version=__version__,
description='A Python implementation to calculate the ICC',
long_description=README,
long_description_content_type='text/markdown',
url='https://github.com/Mind-the-Pineapple/ICC',
author='Walter Hugo Lopez Pinaya, Jessica Dafflon',
author_email='[email protected], [email protected]',
license='MIT',
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Operating System :: MacOS',
'Operating System :: Unix',
],
packages=['icc'],
include_package_data=True,
install_requires=['scipy', 'numpy'],
)