-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (38 loc) · 1.14 KB
/
setup.py
File metadata and controls
41 lines (38 loc) · 1.14 KB
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
#coding: utf-8
#!/usr/bin/env python
from setuptools import setup, find_packages
install_requires = [
"paramiko>=1.16.0"
]
tests_require = [
"paramiko>=1.16.0"
]
setup(
name="scielo_paperboy",
version="0.12.7",
description=u"Utilitary to send Images. PDF's, Translations and XML's from the local website to stanging and production servers",
author="SciELO Dev Team",
author_email="scielo-dev@googlegroups.com",
license="BSD License",
url="http://github.com/scieloorg/paperboy",
packages=find_packages(),
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2.7",
],
dependency_links=[
],
tests_require=tests_require,
test_suite='tests',
install_requires=install_requires,
entry_points={
'console_scripts': [
'paperboy=paperboy.send_to_server:main',
'paperboy_delivery_to_server=paperboy.send_to_server:main',
'paperboy_delivery_to_scielo=paperboy.send_to_scielo:main'
]
}
)