-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 688 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 688 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
# -*- coding: utf-8 -*-
import setuptools
import sys
if sys.version_info < (2, 5):
raise ImportError("This library requires Python 2.5 or later.")
setuptools.setup(
name="chess",
version="1.1.2",
author="Daniel M",
author_email="danielmiao2019@icloud.com",
description="Chess Library for Python 3 and Python 2",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://github.com/DanielMiao1/chess",
classifiers=[
"Programming Language :: Python 3",
"Operating System :: OS Independent"
],
zip_safe=False,
packages=["chess"],
package_data={"chess": ["py.typed"]},
package_dir={"": "."},
python_requires=">=2.5",
)