-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (28 loc) · 1001 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
import os
import re
import sys
from setuptools import Command, find_packages, setup
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name="ras",
version="0.1",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
keywords="diffusion scheduler pytorch",
license="Apache 2.0 License",
author="Ziming Liu, Yifan Yang, Chengruidong Zhang, Yiqi Zhang, Lili Qiu, Yang You, Yuqing Yang",
author_email="liuziming@comp.nus.edu.sg",
url="https://github.com/MaruyamaAya/RAS",
package_dir={"": "src"},
packages=find_packages("src"),
install_requires=required,
python_requires=">=3.12",
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Environment :: GPU :: NVIDIA CUDA",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
)