forked from eribean/RyStats
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (38 loc) · 1.87 KB
/
setup.py
File metadata and controls
40 lines (38 loc) · 1.87 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
from setuptools import setup, convert_path
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
if __name__ == '__main__':
setup(
name="RyStats",
packages=['RyStats.inferential', 'RyStats.factoranalysis',
'RyStats.survey', 'RyStats.dimensionality',
'RyStats.common', 'RyStats.plots'],
package_dir={'RyStats.common': convert_path('./common'),
'RyStats.inferential': convert_path('./inferential'),
'RyStats.factoranalysis': convert_path('./factoranalysis'),
'RyStats.survey': convert_path('./survey'),
'RyStats.dimensionality': convert_path('./dimensionality'),
'RyStats.plots': convert_path('./plots')
},
version="0.5.0",
license="MIT",
description="Psychology Related Statistics in Python!",
long_description=long_description.replace('<ins>','').replace('</ins>',''),
long_description_content_type='text/markdown',
author='Ryan C. Sanchez',
author_email='ryan.sanchez@gofactr.com',
url = 'https://github.com/eribean/RyStats',
keywords = ['Psychology', 'Psychometrics', 'Factor Analysis', 'Data Science',
'Logistic Regression', 'Linear Regression', 'Mediation', 'Statistics'],
install_requires = ['numpy', 'scipy', 'bokeh', 'ipython'],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
)