-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
73 lines (58 loc) · 2.05 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# coding: utf-8
import os
from setuptools import setup
__here__ = os.path.abspath(os.path.dirname(__file__))
def split_requirements(lines):
requirements, dependencies = [], []
for line in lines:
if line.startswith('-e'):
line = line.split(' ', 1)[1]
dependencies.append(line)
line = line.split('#egg=', 1)[1]
requirements.append(line)
return requirements, dependencies
with open(os.path.join(__here__, 'requirements', 'dist.txt')) as f:
REQUIREMENTS = [x.strip() for x in f]
REQUIREMENTS = [x for x in REQUIREMENTS if x and not x.startswith('#')]
REQUIREMENTS, DEPENDENCIES = split_requirements(REQUIREMENTS)
README = open(os.path.join(__here__, 'README.rst')).read()
setup(
name='il2fb-game-log-parser',
version='1.0.3',
description=(
"Parse events from game log produced by dedicated server of "
"«IL-2 Forgotten Battles» flight simulator"
),
long_description=README,
keywords=[
'il2', 'il-2', 'fb', 'forgotten battles', 'parser', 'events', 'server',
'game', 'log',
],
license='LGPLv3',
url='https://github.com/IL2HorusTeam/il2fb-game-log-parser',
author='Alexander Oblovatniy',
author_email='[email protected]',
packages=[
'il2fb.parsers.game_log',
],
namespace_packages=[
'il2fb',
'il2fb.parsers',
],
include_package_data=True,
install_requires=REQUIREMENTS,
dependency_links=DEPENDENCIES,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Natural Language :: English',
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
],
)