forked from tor2web/Tor2web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (19 loc) · 646 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (19 loc) · 646 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
#-*- coding: utf-8 -*-
import os
import pip
import re
from setuptools import find_packages, setup
from tor2web import __version__
install_requires = [str(r.req) for r in pip.req.parse_requirements('requirements.txt',
session=pip.download.PipSession())]
setup(
name="tor2web",
version=__version__,
author="Random GlobaLeaks developers",
author_email = "info@globaleaks.org",
url="https://tor2web.org/",
packages=find_packages(exclude=['*.tests', '*.tests.*']),
scripts=["bin/tor2web"],
install_requires=install_requires
)