-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (36 loc) · 1.06 KB
/
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
from setuptools import setup, find_packages
setup(
name='gokusan',
version='0.0.1',
author='Julian Gindi',
author_email='julian@isl.co',
url='https://github.com/istrategylabs/gokusan',
license='LGPL',
description='A lightweight s3 deployment system for static sites',
long_description=__doc__,
keywords=['aws', 's3', 'command-line', 'CLI', 'deploy'],
packages=find_packages(),
scripts=[],
entry_points={
'console_scripts': [
'gokusan = gokusan.cli:main',
]
},
install_requires=[
'boto3 >= 1.2.2',
'PyYAML >= 3.11',
],
include_package_data=True,
zip_safe=False,
test_suite='nose.collector',
platforms='any',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Natural Language :: English',
'Programming Language :: Python :: 3',
],
)