-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (29 loc) · 850 Bytes
/
setup.py
File metadata and controls
34 lines (29 loc) · 850 Bytes
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
from setuptools import setup, find_packages
with open('README.md') as readme_file:
README = readme_file.read()
setup_args = dict(
name='vdocipher.py',
version='0.5.1',
url='https://github.com/puzzlsoftwarehouse/vdocipher.py',
license='MIT License',
author='Puzzl Software House',
author_email='hello@puzzl.com.br',
keywords='vdocipher video api python wrapper',
description='Just a VdoCipher api wrapper for python.',
long_description_content_type="text/markdown",
long_description=README,
packages=find_packages(),
)
install_requires = [
'dataclasses-json',
'requests_toolbelt'
]
extras_require = {
'dev': [
'pytest',
'twine',
'wheel'
]
}
if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires, extras_require=extras_require)