-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 937 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 937 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
26
27
28
29
30
from setuptools import setup, find_packages
import pygot
with open('README.md') as f:
readme = f.read()
setup(
name=pygot.__name__,
version=pygot.__version__,
packages=find_packages(),
author=f'{pygot.__author__} <{pygot.__author_email__}>',
license=pygot.__license__,
description=pygot.__doc__.splitlines()[0],
long_description=readme,
long_description_content_type='text/markdown',
url=pygot.__url__,
classifiers=[
'Topic :: Games/Entertainment :: Board Games',
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Operating System :: OS Independent',
'Typing :: Typed',
],
)