-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 1.09 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
from setuptools import setup
README = open('README.md').read()
REQUIREMENTS_BASE = open('requirements.txt').read().splitlines()
# Optional dependencies
REQUIREMENTS_AZ = open(
'requirements_az.txt').read().splitlines()
REQUIREMENTS_PG = open(
'requirements_pg.txt').read().splitlines()
REQUIREMENTS_ALL = (REQUIREMENTS_BASE + REQUIREMENTS_AZ + REQUIREMENTS_PG)
setup(name='corso',
classifiers=['Intended Audience :: Developers',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Games/Entertainment'],
python_requires='>=3.9',
version='1.1.0',
description='Environment for the game of Corso + AI tools.',
long_description_content_type='text/markdown',
long_description=README,
url='http://github.com/Ball-Man/corso',
author='Francesco Mistri',
author_email='franc.mistri@gmail.com',
license='MIT',
packages=['corso'],
extras_require={
'az': REQUIREMENTS_AZ,
'pg': REQUIREMENTS_PG,
'all': REQUIREMENTS_ALL},
install_requires=REQUIREMENTS_BASE
)