-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 793 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 793 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="steamsignin",
version="1.1.3",
author="TeddiO",
author_email="",
description="OpenID 2.0 sign in for Steam",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/TeddiO/pySteamSignIn",
project_urls={
"Bug Tracker": "https://github.com/TeddiO/pySteamSignIn/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(exclude=('samples', '.github')),
python_requires=">=3.6"
)