-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
34 lines (31 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import rdcli
from rdcli.config import VERSION
setup(
name='rdcli',
version=VERSION,
packages=find_packages(),
author=rdcli.__author__,
author_email='[email protected]',
description='Use Read-Debrid from your command line !',
long_description=open('README.rst').read(),
include_package_data=True,
url='https://github.com/MrMitch/realdebrid-CLI',
classifiers=[
'Programming Language :: Python',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Internet',
],
entry_points={
'console_scripts': [
'rdcli = rdcli.rdcli:main',
],
},
license="MIT"
)