-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
executable file
·50 lines (43 loc) · 1.29 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
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
from setuptools import setup, find_packages
# Read long description
with open('README.rst') as f:
long_description = f.read()
setup(
name='s3-deploy-website',
version='0.3.0',
license='MIT',
author='Jon Lund Steffensen',
author_email='jonlst@gmail.com',
description='S3 website deployment tool',
long_description=long_description,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
packages=find_packages(),
entry_points={
'console_scripts': [
's3-deploy-website = s3_deploy.deploy:main'
]
},
install_requires=[
# moto is unable to test >=1.8 currently
# https://github.com/spulec/moto/issues/1793
'boto3>=1.7,<1.8',
'PyYAML~=3.11',
'six~=1.10',
],
test_suite='s3_deploy.tests',
tests_require=[
'mock~=2.0',
'moto~=1.1',
],
)