-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (36 loc) · 1.27 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
from codecs import open
from os import path
from otv.globals import VERSION
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.rst"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="otv",
version=VERSION,
license="MIT",
description="Ortho4XP Tile Validator",
long_description=long_description,
url="https://github.com/dyoung522/otv",
author="Donovan C. Young",
author_email="dyoung522@gmail.com",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Games/Entertainment",
"Topic :: Games/Entertainment :: Simulation",
"Topic :: Utilities",
],
keywords=["ortho4xp", "x-plane"],
packages=find_packages(exclude=["contrib", "docs", "tests*"]),
include_package_data=True,
install_requires=["colorama", "tqdm"],
python_requires=">=3",
entry_points={"console_scripts": ["otv=otv:main"]},
)