-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 927 Bytes
/
setup.py
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
# -*- coding: utf-8 -*-
import os
import sys
try:
from setuptools import setup
setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
setup(
name='snor',
version='0.0.7',
author='Paul Tax',
author_email='[email protected]',
include_package_data=True,
install_requires = [
'requests>=0.14.0',
'transmissionrpc>=0.9',
'peewee>=2.0.8',
'Flask>=0.9',
'Jinja2>=2.6'
],
packages=[
'snor',
'snor.search',
'snor.clients'
],
entry_points={
'console_scripts': [
'snor = snor.server:main',
],
},
url='https://github.com/tax/snor',
license='MIT licence, see LICENCE.txt',
description='A very lightweight "sickbeard for torrents" ',
long_description=open('README.md').read(),
)