-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·43 lines (39 loc) · 1.5 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
import setuptools
import os
with open("README.md", "r") as fh:
long_description = fh.read()
DIR = os.path.dirname(os.path.abspath(__file__))
INSTALL_PACKAGES = open(os.path.join(DIR, "requirements.txt")).read().splitlines()
print(INSTALL_PACKAGES)
setuptools.setup(
name="pyscii-bird",
version="0.1.0",
author="Arnaud Dupuis",
author_email="[email protected]",
description="A terminal based re-creation of a famous game involving a pesky bird.",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=INSTALL_PACKAGES,
url="https://www.pygamelib.org",
packages=setuptools.find_packages(),
scripts=["pyscii-bird.py"],
keywords=["console", "terminal", "game", "arcade", "flappy"],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Environment :: Console",
"Topic :: Terminals",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
project_urls={
"Documentation": "https://github.com/pygamelib/pyscii-bird",
"Source": "https://github.com/pygamelib/pyscii-bird",
"Tracker": "https://github.com/pygamelib/pyscii-bird/issues",
},
python_requires=">=3.6",
)