-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
36 lines (30 loc) · 960 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='noisemaker',
version='0.5.0',
description='Generates procedural noise with Python 3 and TensorFlow',
author='Alex Ayars',
author_email='[email protected]',
url='https://github.com/aayars/py-noisemaker',
packages=find_packages(),
entry_points='''
[console_scripts]
magic-mashup=noisemaker.scripts.magic_mashup:main
mood=noisemaker.scripts.mood:main
noisemaker=noisemaker.scripts.noisemaker:main
''',
install_requires=[
"absl-py>=0.9,<2.2",
"click==8.1.7",
"colorthief==0.2.1",
"h5py>=3.10.0",
"loguru==0.7.2",
"opensimplex==0.3",
"Pillow==9.5.0",
"protobuf<4.21,>=3.20.3",
"requests>=2.4.2",
"six>=1.15,<1.17",
"wheel==0.43.0", # Needed by TF
],
tests_require=["pytest==8.2.0"],
)