-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (36 loc) · 1.11 KB
/
setup.py
File metadata and controls
39 lines (36 loc) · 1.11 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
from setuptools import setup, find_packages
# Read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
# Parse the requirements.txt file to get a list of dependencies
with open("requirements.txt") as f:
requirements = f.read().splitlines()
setup(
name="clearbox-preprocessor",
version="0.12.7",
author="Dario Brunelli",
author_email="dario@clearbox.ai",
description="A fast polars based data pre-processor for ML datasets",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Clearbox-AI/preprocessor", # Replace with your GitHub repository URL
packages=find_packages(exclude=["tests", "*.tests", "*.tests.*", "tests.*"]),
classifiers=[
],
python_requires='>3.9',
install_requires=requirements,
extras_require={
"dev": [
"check-manifest",
"pytest>3.9",
],
"test": [
"coverage",
],
},
package_data={
},
entry_points={
},
)