-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 889 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 889 Bytes
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
from setuptools import setup, find_packages
import autoencoder_program_synthesis
setup(name='Autoencoder Program Synthesis',
version=autoencoder_program_synthesis.__version__,
description='Autoencoder Program Synthesis: A Tree-based VAE-RNN as a tool for generating new C++ programs.',
author='Sander de Bruin',
author_email='s.d.m.d.bruin@student.tue.nl',
url='https://github.com/sander102907/autoencoder_program_synthesis',
packages=find_packages(),
install_requires=[
'anytree',
'cpp_ast_parser @ git+https://github.com/sander102907/cpp_ast_parser',
'nltk',
'sacred',
'sctokenizer',
'gensim',
'pytorch-tree-lstm',
'numpy',
'pymongo[srv]',
'icecream',
],
long_description=open('README.md').read(),
license='APACHE 2.0'
)