-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
58 lines (52 loc) · 1.66 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
53
54
55
56
57
58
"""The package settings."""
import codecs
import os
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = "\n" + fh.read()
VERSION = "1.12.1"
DESCRIPTION = "Big 5 IPIP-NEO Personality Traits"
LONG_DESCRIPTION = "Library with a self-administered questionnaire that assesses a person's personality according to the Big Five Model, using the IPIP-NEO."
setup(
name="five-factor-e",
version=VERSION,
author="Ederson Corbari, NeuroQuest AI",
author_email="<e@NeuroQuest.ai>",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=long_description,
packages=find_packages(exclude=("test",)),
python_requires=">=3.10",
include_package_data=True,
install_requires=[],
extras_require={"quiz": ["plotext"]},
entry_points={
"console_scripts": [
"ipipneo-quiz = ipipneo.quiz:main",
],
},
keywords=[
"IPIP",
"IPIP-NEO",
"Big-5",
"Big-Five",
"Five-Factor",
"Personality",
"Assessment",
"Psychometrics",
"Personality-Insights",
"People-Analytics",
"Python",
],
classifiers=[
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)