-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (28 loc) · 818 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
import setuptools
VERSION = "0.0.7"
NAME = "prisoners-dilemma-sdk"
INSTALL_REQUIRES = []
setuptools.setup(
name=NAME,
version=VERSION,
description="",
url=f"https://github.com/youssef-attai/{NAME}",
project_urls={
"Source Code": f"https://github.com/youssef-attai/{NAME}"
},
author="Youssef Atta'i",
author_email="youssefjattai@gmail.com",
license="MIT",
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
],
# Snowpark requires Python 3.8
python_requires=">=3.8",
# Requirements
install_requires=INSTALL_REQUIRES,
packages=["prisoners_dilemma_sdk"],
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
)