-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
31 lines (30 loc) · 949 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
from setuptools import setup, find_packages
import sys, os
setup(
name='wldhx.yadisk-direct',
use_scm_version=True,
description="Get real direct links usable with tools like curl or wget for files stored in Yandex.Disk",
long_description=open('README.rst').read(),
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
],
keywords='Yandex.Disk',
author='wldhx',
author_email='[email protected]',
url='https://gitlab.com/wldhx/yadisk-direct',
license='GPLv3',
packages=find_packages(exclude=['examples', 'tests']),
zip_safe=True,
setup_requires=[
'setuptools_scm',
],
install_requires=[
'requests',
],
entry_points={
'console_scripts': [
'yadisk-direct = wldhx.yadisk_direct.main:main',
],
})