This repository was archived by the owner on Jul 20, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.31 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.31 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
#!/usr/bin/env python3
"""
This file is part of GetTor, a service providing alternative methods to download
the Tor Browser.
:authors: Hiro <hiro@torproject.org>
Cecylia Bocovich <cohosh@torproject.org>
please also see AUTHORS file
:copyright: (c) 2008-2020, The Tor Project, Inc.
(c) 2020, all entities within the AUTHORS file
:license: see included LICENSE for information
"""
import setuptools
setuptools.setup(
name='gettor',
version='0.0.1',
description='Backend system for distributing Tor Browser downloads',
author='Israel Leiva',
author_email='ilv@torproject.org',
maintainer='Cecylia Bocovich',
maintainer_email='cohosh@torproject.org',
url='https://gettor.torproject.org',
download_url='https://gitweb.torproject.org/gettor.git',
package_dir={'gettor': 'gettor'},
packages=setuptools.find_packages(),
scripts=['scripts/add_links_to_db',
'scripts/create_db',
'scripts/export_stats',
'scripts/process_email',
'scripts/update_files',
'scripts/update_git'],
install_requires=['twisted',
'pytest',
'requests_oauthlib',
'dkimpy'],
)