-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 801 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import os
from setuptools import setup, find_packages
PACKAGE_ROOT = os.path.dirname(os.path.realpath(__file__))
README_FILE = open(os.path.join(PACKAGE_ROOT, "README.md"), "r").read()
# TODO Update install requirements to add transformers, zarr
if __name__ == "__main__":
setup(
name="setkit",
version="0.0.0",
description="Base classes, tools and utilities for creating easy to use datasets.",
long_description=README_FILE,
long_description_content_type="text/markdown",
url="https://github.com/with-branch/setkit",
author="HesitantlyHuman",
author_email="tannersims@hesitantlyhuman.com",
license="MIT",
packages=find_packages(),
install_requires=[
"torch >=1.10.0, <2.0.0",
],
)