-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
49 lines (41 loc) · 1.24 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
from setuptools import setup, find_packages
from os import path
from io import open
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as readme:
long_description = readme.read()
test_requirements = ['pytest']
setup(
name='ReferentialGym',
version='0.0.1',
description='Framework to study the emergence of artificial languages using deep learning. Developed by Kevin Denamganaï at the University of York.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Near32/ReferentialGym',
author='Kevin Denamganaï',
author_email='[email protected]',
classifiers=[
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence :: Deep Learning :: Language Emergence / Grounding',
'Programming Language :: Python'
],
packages=find_packages(),
zip_safe=False,
install_requires=[
'tqdm',
#'Cython',
'numpy',
'scipy',
'scikit-image',
'scikit-learn==0.23',
'h5py',
'opencv-python',
'torch>=1.4',
'torchvision>=0.5.0',
'tensorboardX',
'matplotlib',
'docopt',
'pycocotools'
] + test_requirements,
python_requires=">=3.6",
)