-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
64 lines (53 loc) · 1.51 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import io
import os
import re
from setuptools import find_packages
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="artefact_nca",
version="0.1.0",
url="https://github.com/kragniz/cookiecutter-pypackage-minimal",
license='MIT',
author="Shyam Sudhakaran",
author_email="[email protected]",
description="Offical code for the paper: \"Growing 3D Artefacts and Functional Machines with Neural Cellular Automata\"",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(exclude=('tests',)),
install_requires=[
'numpy==1.20.1',
'nbtlib==1.12.0',
'torch',
'hydra-core==1.1.0.rc1',
'pydantic',
'attrs',
'loguru',
'tensorboard==2.4.0',
'matplotlib',
'einops',
'tqdm',
'grpcio',
'test-evocraft-py',
'protobuf',
'click',
'omegaconf==2.1.0.rc1',
'ipython==7.23.1',
'ipywidgets',
'ipython-genutils==0.2.0',
'wcwidth',
'ptyprocess==0.6.0',
'pytz',
'requests',
'torchsummaryX'
],
include_package_data=True,
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
],
)