forked from embodied-computation-group/metadpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (41 loc) · 1.17 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
41
42
43
44
45
46
47
48
49
50
51
52
# Copyright (C) 2019 Nicolas Legrand
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
DESCRIPTION = (
"Fitting behavioural and cognitive models" "of metacognitive efficiency in Python."
)
DISTNAME = "metadPy"
MAINTAINER = "Nicolas Legrand"
MAINTAINER_EMAIL = "[email protected]"
VERSION = "0.0.1"
INSTALL_REQUIRES = [
"numpy>=1.18.1",
"scipy>=1.3",
"pandas>=0.24",
"matplotlib>=3.1.3",
"seaborn>=0.10.0",
"pandas_flavor>=0.1.2",
]
PACKAGES = ["metadPy", "metadPy.datasets"]
try:
from setuptools import setup
_has_setuptools = True
except ImportError:
from distutils.core import setup
if __name__ == "__main__":
setup(
name=DISTNAME,
author=MAINTAINER,
author_email=MAINTAINER_EMAIL,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
long_description=open("README.md").read(),
long_description_content_type="text/x-rst",
license="GPL-3.0",
version=VERSION,
install_requires=INSTALL_REQUIRES,
include_package_data=True,
packages=PACKAGES,
)