-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
37 lines (29 loc) · 1004 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
36
37
import os
import setuptools
this_directory = os.path.abspath(os.path.dirname(__file__))
# Load README.
def readme():
readme_path = os.path.join(this_directory, "README.md")
with open(readme_path, encoding="utf-8") as fp:
return fp.read()
# Load requirements.
def requirements():
requirements_path = os.path.join(this_directory, "requirements.txt")
with open(requirements_path, encoding="utf-8") as fp:
return fp.read().splitlines()
setuptools.setup(
name="diffusion",
version="0.0.1",
author="Maruan Al-Shedivat",
author_email="[email protected]",
description="Playground for experimenting with diffusion generative models.",
long_description=readme(),
url="https://github.com/alshedivat/diffusion-playground",
install_requires=requirements(),
packages=setuptools.find_packages(),
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
)