forked from pydcs/dcs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (45 loc) · 1.6 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
from setuptools import setup
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
long_description = ''
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
for line in f:
if line.startswith('## Sample'):
break
long_description += line
setup(
name="pydcs",
version='0.13.0',
description="A Digital Combat Simulator mission builder framework",
long_description=long_description,
url='https://github.com/pydcs/dcs',
author="Peinthor Rene",
author_email="peinthor@gmail.com",
license="LGPLv3",
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Games/Entertainment :: Simulation',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3 :: Only'
],
keywords='dcs digital combat simulator eagle dynamics mission framework',
packages=['dcs', 'dcs/terrain', 'dcs/lua', 'dcs/scripts'],
package_data={
'dcs': ['py.typed'],
'dcs/terrain': ['caucasus.p', 'nevada.p'],
},
entry_points={
'console_scripts': [
'dcs_random=dcs.scripts.caucasus_random_mission:main',
'dcs_dogfight_wwii=dcs.scripts.dogfight_wwii:main',
'dcs_oil_convoy=dcs.scripts.destroy_oil_transport:main'
]
},
test_suite="tests"
)