forked from spenczar/lektor-s3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (45 loc) · 1.28 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
from setuptools import setup
with open('README.md') as readme_file:
readme = readme_file.read()
setup(
name='lektor-s3',
description='Lektor plugin to support publishing to S3',
long_description=readme,
long_description_content_type='text/markdown',
version='0.5.1',
author='Spencer Nelson',
author_email='[email protected]',
url='https://github.com/spenczar/lektor-s3',
license='MIT',
platforms='any',
py_modules=['lektor_s3'],
entry_points={
'lektor.plugins': [
's3 = lektor_s3:S3Plugin',
]
},
test_suite='nose.collector',
tests_require=[
'nose',
'boto3>=1.1.4',
's3transfer',
],
install_requires=[
'Lektor',
'boto3>=1.1.4',
's3transfer',
'inifile',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Plugins',
'Environment :: Web Environment',
'Framework :: Lektor',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP :: Site Management',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)