-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (39 loc) · 1.39 KB
/
setup.py
File metadata and controls
49 lines (39 loc) · 1.39 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
42
43
44
45
46
47
48
from setuptools import setup, find_packages
import sitetool
setup(
name = 'sittool',
package = 'sitetool',
version = sitetool.APP_VERSION,
author = 'Jose Juan Montes, Pablo Arias',
author_email = 'jjmontes@gmail.com',
packages = find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
zip_safe=False,
include_package_data=True,
package_data = {
#'sitetool': ['*.template']
},
url='https://github.com/jjmontesl/sitetool',
license='LICENSE.txt',
description='Tool to manage website deployments and development',
long_description="SiteTool manages information about Joomla deployments and provides methods to backup and deploy Joomla sites across different staging environments.",
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Database',
'Topic :: Utilities',
],
install_requires = [
"pyyaml >= 5.1",
"fs >= 2.4.7",
"dateutils >= 0.6.6",
"fabric >= 2.4.0",
"humanize >= 0.5.1",
"requests >= 2.22.0",
"requests_html >= 0.10.0",
"pathspec >= 0.5.9"
],
entry_points={'console_scripts': ['sit=sitetool.core.bootstrap:main']},
)