-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (46 loc) · 1.62 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# SPDX-License-Identifier: Apache-2.0
# Copyright (c) Flowerbug <[email protected]>
from os import path
from setuptools import setup, find_packages
from ngfp.version import GetVersion
# read the contents of your README file
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
__version__ = GetVersion()
setup(
name="ngfp",
version=__version__,
author="Flowerbug",
author_email="[email protected]",
description="A puzzle game based upon gfpoken.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://https://github.com/flowerbug/ngfp",
license="Apache-2.0",
setup_requires=["setuptools >= 40.6.3",
"twine >= 1.12.1",
"wheel >= 0.32.3"
],
packages=find_packages(),
install_requires=["pyglet >= 1.3.0",
"pycairo",
"pygobject"
],
provides=["ngfp"],
include_package_data=True,
entry_points={
"console_scripts": ["runngfp = ngfp.ngfp:main"]
},
python_requires=">=3",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
"Intended Audience :: End Users/Desktop",
"Topic :: Games/Entertainment :: Puzzle Games"
],
)