-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
41 lines (27 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import pyprocessmacro
setup(
name='PyProcessMacro',
version=pyprocessmacro.__version__,
packages=find_packages(),
author="Quentin André",
author_email="[email protected]",
description="A Python library for moderation, mediation and conditional process analysis. Based on Andrew F. Hayes Process Macro.",
long_description=open('README.md', encoding="utf-8").read(),
long_description_content_type='text/markdown',
install_requires=["numpy", "matplotlib", "pandas", "scipy", "seaborn"],
keywords=['mediation-analysis', 'statistics', 'process', 'plotting', 'data-science', 'data-analysis',
'data-visualization', 'regression-models'],
url='https://github.com/QuentinAndre/pyprocessmacro/',
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved",
"Natural Language :: English",
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7"
],
license="MIT",
python_requires='>=3.7'
)