-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 984 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
from setuptools import setup, find_packages
def load_long_description():
text = open('README.md', encoding='utf-8').read()
return text
setup(
name="soc",
version='0.1',
python_requires='>=3.6',
description='Settlers of Catan AI research project',
url='https://github.com/ruflab/soc',
download_url='https://github.com/ruflab/soc',
author='Morgan Giraud',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Programming Language :: Python :: 3.8',
],
keywords=['deep learning', 'pytorch', 'AI'],
long_description=load_long_description(),
long_description_content_type='text/markdown',
packages=find_packages(exclude=['tests', 'tests/*']),
install_requires=[
'neptune-client',
'pytorch_lightning == 0.9.0',
'hydra-core >= 1.0.0',
'transformers >= 3.0'
]
)