forked from pyload/pyload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
172 lines (144 loc) · 5.36 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @author: vuolter
# ____________
# _ / | \ ___________ _ _______________ _ ___ _______________
# / | ___/ | _ __ _ _| | ___ __ _ __| | \\ ___ ___ _\
# / \___/ ______/ | '_ \ || | |__/ _ \/ _` / _` | \\ / _ \/ _ `/ \
# \ | o| | .__/\_, |____\___/\__,_\__,_| // /_//_/\_, / /
# \______\ /______|_|___|__/________________________//______ /___/__/
# \ /
# \/
from __future__ import absolute_import
import codecs
import os
import re
import shutil
from itertools import chain
from setuptools import Command, find_packages, setup
from setuptools.command.bdist_egg import bdist_egg
from setuptools.command.build_py import build_py
def read_text(path):
with codecs.open(path, encoding='utf-8', errors='ignore') as fp:
return fp.read().strip()
def write_text(path, text):
with codecs.open(path, mode='w', encoding='utf-8') as fp:
fp.write(text.strip() + '\n')
_RE_SECTION = re.compile(
r'^\[([^\s]+)\]\s+([^[\s].+?)(?=^\[|\Z)', flags=re.M | re.S)
_RE_ENTRY = re.compile(r'^\s*(?![#;\s]+)([^\s]+)', flags=re.M)
def _parse_requires(text):
deps = list(set(
_RE_ENTRY.findall(_RE_SECTION.split(text, maxsplit=1)[0])))
extras = {}
for name, rawdeps in _RE_SECTION.findall(text):
extras[name] = list(set(pack for pack in _RE_ENTRY.findall(rawdeps)))
return deps, extras
def get_requires(name):
path = os.path.join('requirements', name + '.txt')
text = read_text(path)
deps, extras = _parse_requires(text)
if name.startswith('extra'):
extras['full'] = list(set(chain(*list(extras.values()))))
return extras
return deps
# def _setx_ntpath():
# packdir = os.path.abspath(os.path.dirname(__file__))
# subprocess.call('SETX path "%PATH%;{0}"'.format(packdir), shell=True)
class BuildLocale(Command):
"""
Build the locales
"""
description = 'build locales'
user_options = []
def run(self):
self.run_command('extract_messages')
self.run_command('init_catalog')
# self.run_command('download_catalog')
self.run_command('compile_catalog')
# class DownloadCatalog(Command):
# """
# Download the translation catalog from the remote repository
# """
# description = 'download the translation catalog from the remote repository'
# user_options = []
# def initialize_options(self):
# pass
# def finalize_options(self):
# pass
# def run(self):
# raise NotImplementedError
class BdistEgg(bdist_egg):
"""
Custom ``bdist_egg`` command
"""
def run(self):
if not self.dry_run:
self.run_command('build_locale')
bdist_egg.run(self)
class BuildPy(build_py):
"""
Custom ``build_py`` command
"""
def run(self):
if not self.dry_run:
self.run_command('build_locale')
build_py.run(self)
setup(
name='pyload-ng',
version=read_text('VERSION'),
description='Free and Open Source download manager written in Pure Python '
'and designed to be extremely lightweight, fully customizable '
'and remotely manageable',
long_description=read_text('README.rst'),
keywords='pyload download download-manager download-station downloader '
'jdownloader one-click-hoster upload upload-manager '
'upload-station uploader',
url='https://pyload.net',
download_url='https://github.com/pyload/pyload/releases',
author='Walter Purcaro',
author_email='[email protected]',
license='GNU Affero General Public License v3',
classifiers=[
"Development Status :: 1 - Planning",
"Environment :: Web Environment",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Natural Language :: English",
# "Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
# "Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Communications",
"Topic :: Communications :: File Sharing",
"Topic :: Internet",
"Topic :: Internet :: File Transfer Protocol (FTP)",
"Topic :: Internet :: WWW/HTTP",
'Topic :: Software Development :: Libraries :: Python Modules'],
platforms=['any'],
packages=['pyload'],
include_package_data=True,
obsoletes=['pyload'],
install_requires=get_requires('install'),
setup_requires=get_requires('setup'),
extras_require=get_requires('extra'),
python_requires='>=2.6,!=3.0,!=3.1,!=3.2',
cmdclass={
'bdist_egg': BdistEgg,
'build_locale': BuildLocale,
'build_py': BuildPy,
# 'download_catalog': DownloadCatalog
},
message_extractors={'pyload': [('**.py', 'python', None)]},
# test_suite='nose.collector',
# tests_require=get_requires('test'),
zip_safe=True)