-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
20 lines (18 loc) · 825 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = 'WarThunder',
packages = ['WarThunder'],
version = '2.3.4',
description = 'Python package used to access air vehicle telemetry while in War Thunder air battles',
long_description = long_description,
long_description_content_type = "text/markdown",
author = 'Power_Broker',
author_email = '[email protected]',
url = 'https://github.com/PowerBroker2/WarThunder',
download_url = 'https://github.com/PowerBroker2/WarThunder/archive/2.3.4.tar.gz',
keywords = ['War Thunder'],
classifiers = [],
install_requires = ['imagehash', 'requests', 'Pillow', 'simplejson']
)