forked from CacheBrowser/cachebrowser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 634 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 634 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
from setuptools.command.install import install
setup(
name='cachebrowser',
version='0.1.0',
url='https://cachebrowser.info',
description='A proxy-less censorship resistance tool',
long_description=open('README.md').read(),
maintainer='Hadi Zolfaghari',
maintainer_email='hadi@cs.umass.edu',
license='',
packages=['cachebrowser', 'cachebrowser/extensions'],
package_data={'': ['*.json', 'data']},
scripts=['scripts/cachebrowser'],
install_requires=[
'gevent>=1.0.2',
'six>=1.10.0',
'peewee>=2.6.0',
'PyYAML>=3.11'
],
)