-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
73 lines (58 loc) · 2.07 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-difficulty',
version='1.3.1',
description="Parser and emitter of difficulty settings for IL-2 FB",
long_description=README,
keywords=[
'il2', 'il-2', 'fb', 'forgotten battles', 'difficulty', 'parser',
'emitter', 'config', 'difficulty',
],
license='LGPLv3',
url='https://github.com/IL2HorusTeam/il2fb-difficulty/',
author='Alexander Oblovatniy, Alexander Kamyhin',
author_email='[email protected], [email protected]',
namespace_packages=[
'il2fb',
'il2fb.config',
],
packages=[
'il2fb.config.difficulty',
'il2fb.config.difficulty.utils',
],
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 :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
],
platforms=[
'any',
],
)