-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathsetup.py
50 lines (43 loc) · 1.47 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
#!/usr/bin/env python
"""Set up the package."""
from setuptools import find_packages, setup
def readme(): # noqa: D103
with open("README.rst") as f:
return f.read()
def requirements(): # noqa: D103
req_path = "requirements.txt"
with open(req_path) as f:
reqs = f.read().splitlines()
return reqs
setup(
name="factor_analyzer",
version="0.5.1",
description="A Factor Analysis tool written in Python",
long_description=readme(),
keywords="factor analysis",
packages=find_packages(),
author="Jeremy Biggs",
author_email="jeremy.m.biggs@gmail.com",
maintainer="Nitin Madnani",
maintainer_email="nmadnani@ets.org",
url="https://github.com/EducationalTestingService/factor_analyzer",
install_requires=requirements(),
extras_require={"dev": ["pre-commit"]},
include_package_data=True,
classifiers=[
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
zip_safe=True,
)