-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
executable file
·133 lines (105 loc) · 4.38 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
#!/usr/bin/env python3
"""
Emonoda -- A set of tools to organize and manage your torrents
Copyright (C) 2015 Devaev Maxim <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
import textwrap
import setuptools.command.easy_install
from setuptools import setup
from setuptools.extension import Extension
from Cython.Build import cythonize
# =====
class _Template(str):
def __init__(self, text: str) -> None:
self.__text = textwrap.dedent(text).strip()
def __mod__(self, kv: dict) -> str:
kv = {"module_name": kv["ep"].module_name, **kv}
return (self.__text % (kv))
class _ScriptWriter(setuptools.command.easy_install.ScriptWriter):
template = _Template("""
# EASY-INSTALL-ENTRY-SCRIPT: %(spec)r,%(group)r,%(name)r
__requires__ = %(spec)r
from %(module_name)s import main
if __name__ == '__main__':
main()
""")
# =====
def main() -> None:
setuptools.command.easy_install.ScriptWriter = _ScriptWriter
with open("requirements.txt") as requirements_file:
install_requires = list(filter(None, requirements_file.read().splitlines()))
setup(
name="emonoda",
version="2.1.38",
url="https://github.com/mdevaev/emonoda",
license="GPLv3",
author="Devaev Maxim",
author_email="[email protected]",
description="A set of tools to organize and manage your torrents",
platforms="any",
packages=[
"emonoda",
"emonoda.web",
"emonoda.optconf",
"emonoda.apps",
"emonoda.apps.hooks",
"emonoda.apps.hooks.rtorrent",
"emonoda.apps.hooks.transmission",
"emonoda.helpers",
"emonoda.plugins",
"emonoda.plugins.clients",
"emonoda.plugins.trackers",
"emonoda.plugins.confetti",
"emonoda.thirdparty",
],
package_data={
"emonoda.plugins.confetti": ["templates/*.mako"],
"emonoda.thirdparty": ["bencoder.pyx"],
},
entry_points={
"console_scripts": [
"emdiff = emonoda.apps.emdiff:main",
"emupdate = emonoda.apps.emupdate:main",
"emfile = emonoda.apps.emfile:main",
"emload = emonoda.apps.emload:main",
"emfind = emonoda.apps.emfind:main",
"emrm = emonoda.apps.emrm:main",
"emconfetti-demo = emonoda.apps.emconfetti_demo:main",
"emconfetti-tghi = emonoda.apps.emconfetti_tghi:main",
"emhook-rtorrent-collectd-stat = emonoda.apps.hooks.rtorrent.collectd_stat:main",
"emhook-rtorrent-manage-trackers = emonoda.apps.hooks.rtorrent.manage_trackers:main",
"emhook-transmission-redownload = emonoda.apps.hooks.transmission.redownload:main",
],
},
ext_modules=cythonize(Extension(
"emonoda.thirdparty.bencoder",
["emonoda/thirdparty/bencoder.pyx"],
extra_compile_args=["-O3"],
)),
install_requires=install_requires,
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.10",
"Programming Language :: Cython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Communications :: File Sharing",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Utilities",
"Operating System :: OS Independent",
"Intended Audience :: System Administrators",
"Intended Audience :: End Users/Desktop",
],
)
if __name__ == "__main__":
main()