-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (30 loc) · 889 Bytes
/
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
from setuptools import setup
from setuptools import find_packages
VERSION = "0.3.12"
DESCRIPTION = "Some commonly used functions and modules"
with open("README.md") as f:
LONG_DESCRIPTION = f.read()
INSTALL_REQUIRES = [
"dill",
"rich",
"tqdm",
"future",
"psutil",
"pathos",
"pydantic>=2.0.0",
"numpy>=1.22.3",
]
setup(
name="carefree-toolkit",
version=VERSION,
packages=find_packages(exclude=("tests",)),
install_requires=INSTALL_REQUIRES,
author="carefree0910",
author_email="[email protected]",
url="https://github.com/carefree0910/carefree-toolkit",
download_url=f"https://github.com/carefree0910/carefree-toolkit/archive/v{VERSION}.tar.gz",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
keywords="python numpy data-science",
)