-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (23 loc) · 899 Bytes
/
setup.py
File metadata and controls
23 lines (23 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
def read_requirements():
with open('requirements.txt') as req:
return req.read().splitlines()
setup(
name='genaz',
version='0.1.0',
packages=find_packages(where='src'), # Tell setuptools to find packages in 'src'
package_dir={'': 'src'}, # Set 'src' as the package directory
install_requires=read_requirements(),
url='https://github.com/albinjal/GeneralAlphaZero',
author='Albin Jaldevik',
author_email='albin@jaldevik.com',
description='General AlphaZero implementation for any game with a gym interface.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.9',
)