-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (44 loc) · 1017 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
43
44
45
46
47
48
from setuptools import setup, find_packages
requires = [
'cffi',
'coloredlogs',
'dropbox',
'imageio',
'numpy',
'pysftp',
'python-resize-image'
]
test_requires = [
'coverage',
'enum',
'pytest',
'pytest-cov'
]
doc_requires = [
'Sphinx',
'sphinx-rtd-theme',
'lowdown'
]
setup(
name='cerda',
version='0.1.2',
description='An NCCA renderfarm SFTP watcher',
url='https://github.com/docwhite/cerda',
download_url='https://github.com/docwhite/cerda/tarball/0.1.2',
author='Ramon Blanquer',
author_email='[email protected]',
license='MIT',
keywords='renderfarm ncca transfer files watch notification email dropbox',
packages=find_packages(exclude=['docs', 'test']),
install_requires=requires,
test_requires=test_requires,
extras_require={
'docs': doc_requires,
'test': test_requires,
},
entry_points={
'console_scripts': [
'cerda=cerda:main',
],
},
)