-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·47 lines (34 loc) · 1.15 KB
/
setup.py
File metadata and controls
executable file
·47 lines (34 loc) · 1.15 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
#!/usr/bin/env python2
from setuptools import setup
setup(
name = 'taters',
version = '0.1-dev',
description = 'A fully modular build and deployment framework',
author = u'Martin Hult\xe9n-Ashauer',
author_email = 'taters-info@nimdraug.com',
licence = 'MIT',
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Topic :: Internet',
'Topic :: Internet :: File Transfer Protocol (FTP)',
'Topic :: Internet :: WWW/HTTP',
'Topic :: System :: Archiving',
'Topic :: System :: Installation/Setup',
'Topic :: Utilities',
],
keywords = 'webdev build deployment ftp ssh less javascript',
packages = [ 'taters' ],
install_requires = [
'furl',
'paramiko',
'sh'
]
)