-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (42 loc) · 1.33 KB
/
setup.py
File metadata and controls
47 lines (42 loc) · 1.33 KB
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
# -*- coding: utf-8 -*-
#######################################################################
# License: MIT License #
# Homepage: https://github.com/tasooshi/torboost/ #
# Version: 0.9.5 #
#######################################################################
import setuptools
with open('README.md') as f:
long_description = f.read()
setuptools.setup(
name='torboost',
version='0.9.5',
author='tasooshi',
author_email='tasooshi@pm.me',
description='Download utility for Tor',
license='MIT License',
keywords=[
'Tor',
'onion',
'download',
],
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/tasooshi/torboost/',
packages=setuptools.find_packages(),
install_requires=(
'requests[socks]==2.27.1',
'stem==1.8.0',
),
entry_points={
'console_scripts': (
'torboost=torboost.torboost:entry_point',
),
},
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
)