-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (29 loc) · 927 Bytes
/
setup.py
File metadata and controls
34 lines (29 loc) · 927 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
25
26
27
28
29
30
31
32
33
34
import os
import pathlib
import pkg_resources
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
def _read_install_requires():
with pathlib.Path("requirements.txt").open() as fp:
return [
str(requirement) for requirement in pkg_resources.parse_requirements(fp)
]
setuptools.setup(
name="tempclr",
version="0.0.1",
author="Yuncong Yang",
author_email="yy3035@columbia.edu",
description="A package for multimodal pretraining.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yyuncong/TempCLR-Dev",
packages=setuptools.find_packages(),
install_requires=_read_install_requires(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: CC-BY-NC",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
)