Upload setup.py
Browse files
setup.py
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from setuptools import setup
|
2 |
+
|
3 |
+
def parse_requirements(filename):
|
4 |
+
lines = (line.strip() for line in open(filename))
|
5 |
+
return [line for line in lines if line and not line.startswith("#")]
|
6 |
+
|
7 |
+
setup(name='DALL-E',
|
8 |
+
version='0.1',
|
9 |
+
description='PyTorch package for the discrete VAE used for DALL·E.',
|
10 |
+
url='http://github.com/openai/DALL-E',
|
11 |
+
author='Aditya Ramesh',
|
12 |
+
author_email='aramesh@openai.com',
|
13 |
+
license='BSD',
|
14 |
+
packages=['dall_e'],
|
15 |
+
install_requires=parse_requirements('requirements.txt'),
|
16 |
+
zip_safe=True)
|