-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (19 loc) · 825 Bytes
/
setup.py
File metadata and controls
24 lines (19 loc) · 825 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
from setuptools import setup, find_packages
import os
import io
with open("README.md", "r") as fh:
long_description = fh.read()
here = os.path.abspath(os.path.dirname(__file__))
version_contents = {}
with io.open(os.path.join(here, "gameball", "version.py"), encoding="utf-8") as f:
exec(f.read(), version_contents)
setup(name= 'gb-alpha',
version = "3.0.0",
packages = find_packages(),
author = "Gameball",
author_email = "support@gameball.co",
description = "Gameball Python SDK provides convinient access to the Gameball API frpm applications written in the Python langauage",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/gameballers/gameball-python",
python_requires = '>=3.4',)