mirror of
https://github.com/torproject/gettor.git
synced 2024-11-23 09:49:41 +00:00
Update setup.py and requirements.txt
This commit is contained in:
parent
829fa9fbaa
commit
bd227cfc75
4
AUTHORS
4
AUTHORS
@ -1,8 +1,9 @@
|
|||||||
Current maintainer/core developers:
|
Current maintainer/core developers:
|
||||||
hiro <hiro@torproject.org>
|
hiro <hiro@torproject.org>
|
||||||
Israel Leiva <ilv@torproject.org> 4096R/540BFC0E
|
Cecylia Bocovich <cohosh@torproject.org>
|
||||||
|
|
||||||
Past core developers:
|
Past core developers:
|
||||||
|
Israel Leiva <ilv@torproject.org> 4096R/540BFC0E
|
||||||
Jacob Appelbaum <jacob@appelbaum.net>
|
Jacob Appelbaum <jacob@appelbaum.net>
|
||||||
Christian Fromme <kaner@strace.org>
|
Christian Fromme <kaner@strace.org>
|
||||||
|
|
||||||
@ -14,4 +15,3 @@ Contributors:
|
|||||||
Sukhbir Singh <sukhbir@torproject.org> 4096R/B297B391
|
Sukhbir Singh <sukhbir@torproject.org> 4096R/B297B391
|
||||||
Aaron Gibson
|
Aaron Gibson
|
||||||
Donncha O'Cearbhaill
|
Donncha O'Cearbhaill
|
||||||
Cecylia Bocovich <cohosh@torproject.org>
|
|
||||||
|
@ -1,6 +1,26 @@
|
|||||||
service_identity==18.1.0
|
attrs==19.3.0
|
||||||
pydkim==0.3
|
Automat==0.8.0
|
||||||
pyopenssl==19.0.0
|
certifi==2019.11.28
|
||||||
|
chardet==3.0.4
|
||||||
|
constantly==15.1.0
|
||||||
|
dkimpy==1.0.3
|
||||||
dnspython==1.16.0
|
dnspython==1.16.0
|
||||||
twisted==19.2.1
|
-e git+git@git-rw.torproject.org:gettor.git@3d6fb34e712f97d646b7502e62f6b6aba8a5382c#egg=gettor
|
||||||
requests_oauthlib=1.0.0
|
hyperlink==19.0.0
|
||||||
|
idna==2.8
|
||||||
|
incremental==17.5.0
|
||||||
|
more-itertools==8.2.0
|
||||||
|
oauthlib==3.1.0
|
||||||
|
packaging==20.1
|
||||||
|
pluggy==0.13.1
|
||||||
|
py==1.8.1
|
||||||
|
PyHamcrest==2.0.0
|
||||||
|
pyparsing==2.4.6
|
||||||
|
pytest==5.3.5
|
||||||
|
requests==2.22.0
|
||||||
|
requests-oauthlib==1.3.0
|
||||||
|
six==1.14.0
|
||||||
|
Twisted==19.10.0
|
||||||
|
urllib3==1.25.8
|
||||||
|
wcwidth==0.1.8
|
||||||
|
zope.interface==4.7.1
|
||||||
|
33
setup.py
33
setup.py
@ -1,11 +1,38 @@
|
|||||||
# -*- coding: utf-8 -*-
|
#!/usr/bin/env python3
|
||||||
"""
|
"""
|
||||||
This file is part of GetTor, a service providing alternative methods to download
|
This file is part of GetTor, a service providing alternative methods to download
|
||||||
the Tor Browser.
|
the Tor Browser.
|
||||||
|
|
||||||
:authors: Hiro <hiro@torproject.org>
|
:authors: Hiro <hiro@torproject.org>
|
||||||
|
Cecylia Bocovich <cohosh@torproject.org>
|
||||||
please also see AUTHORS file
|
please also see AUTHORS file
|
||||||
:copyright: (c) 2008-2014, The Tor Project, Inc.
|
:copyright: (c) 2008-2020, The Tor Project, Inc.
|
||||||
(c) 2014, all entities within the AUTHORS file
|
(c) 2020, all entities within the AUTHORS file
|
||||||
:license: see included LICENSE for information
|
: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'],
|
||||||
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user