forked from X0R0X/cli-torrent-dl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
43 lines (39 loc) · 1.33 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
from pathlib import Path
from setuptools import find_packages, setup
def load_requirements():
return [
l.strip()
for l in Path('requirements.txt').read_text().splitlines()
if not l.startswith('#')
]
setup(
name='tordl',
packages=find_packages(where='tordl'),
package_dir={
'': 'tordl'
},
version='1.10',
license='MIT',
description='CLI Torrent Search and Download',
author='x0r0x',
author_email='jakub.schimer@protonmail.com',
url='https://github.com/X0R0X/cli-torrent-dl/',
download_url='https://github.com/X0R0X/cli-torrent-dl/archive/refs/heads/master.zip',
keywords=['torrent', 'search', 'download', 'cli', 'curses'],
install_requires=load_requirements(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Other Audience',
'Intended Audience :: Developers',
'Topic :: Communications :: File Sharing',
'Topic :: Home Automation',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Topic :: Terminals',
'Environment :: Console',
'Environment :: Console :: Curses',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
],
)