-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
46 lines (43 loc) · 1.25 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
from setuptools import find_packages, setup
exec(open("redframes/version.py").read())
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="redframes",
version=__version__, # type: ignore
url="https://github.com/maxhumber/redframes",
description="General Purpose Data Manipulation Library",
long_description=long_description,
long_description_content_type="text/markdown",
author="Max Humber",
author_email="[email protected]",
license="BSD 2",
packages=find_packages(),
python_requires=">=3.8",
install_requires=["pandas>=1.5,<3.0"],
extras_require={
"test": [
"matplotlib",
"scikit-learn",
],
"dev": [
"black",
"ipykernel",
"isort",
"lxml",
"matplotlib",
"mypy",
"pandas-stubs",
"pyright",
"scikit-learn",
"tabulate",
],
},
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)