-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (23 loc) · 725 Bytes
/
setup.py
File metadata and controls
33 lines (23 loc) · 725 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
28
29
30
31
32
33
"""
Installation script for pySTATIS
"""
from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md')) as f:
long_description = f.read()
setup(
name='pySTATIS',
version='0.2.0',
description='Python implementation of STATIS for analysis of several example_data tables',
long_description=long_description,
# The project's main homepage.
url='https://github.com/mfalkiewicz/pySTATIS',
# Author details
author='Marcel Falkiewicz',
# Choose your license
license='Apache',
packages=['pySTATIS'],
py_modules=["statis"],
install_requires=['numpy', 'scipy']
)