This repository has been archived by the owner on May 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathsetup.py
46 lines (43 loc) · 1.53 KB
/
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
43
44
45
46
#!/usr/bin/env python
from setuptools import setup
def read_description():
import os
path = os.path.join(os.path.dirname(__file__), 'README.rst')
try:
with open(path) as f:
return f.read()
except:
return 'No description found'
setup(
name='autotorrent',
version='1.7.1',
description='AutoTorrent allows easy cross-seeding',
long_description=read_description(),
author='Anders Jensen',
author_email='johndoee+autotorrent@tidalstream.org',
maintainer='John Doee',
url='https://github.com/JohnDoee/autotorrent',
packages=['autotorrent', 'autotorrent.clients'],
install_requires=['six', 'deluge-client', 'requests'],
license='MIT',
package_data={'autotorrent': ['autotorrent.conf.dist']},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: BSD',
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX :: Other',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Communications :: File Sharing',
],
entry_points={ 'console_scripts': [
'autotorrent = autotorrent.cmd:commandline_handler',
]},
)