forked from mdevaev/emonoda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (35 loc) · 817 Bytes
/
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
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
from rtlib import const
import setuptools
##### Main #####
if __name__ == "__main__" :
setuptools.setup(
name="rtfetch",
version=const.VERSION,
url=const.UPSTREAM_URL,
license="GPLv3",
author="Devaev Maxim",
author_email="[email protected]",
description="The set of tools to organize and managament of your torrents",
platforms="any",
packages=(
"rtlib",
"rtlib/fetchers",
"rtlib/clients",
),
scripts=(
"rtfetch.py",
"rtquery.py",
"rtload.py",
"rtfile.py",
"rtdiff.py",
"rthook-manage-trackers.py",
),
classifiers=(
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Operating System :: OS Independent",
),
)