-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
55 lines (50 loc) · 1.53 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
51
52
53
54
55
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
def _read_file(name, encoding='utf-8') -> str:
"""
Read the contents of a file.
:param name: The name of the file in the current directory.
:param encoding: The encoding of the file; defaults to utf-8.
:return: The contents of the file.
"""
with open(name, encoding=encoding) as f:
return f.read()
setup(
name='wood',
version='1.0.3',
description='Compare directories, efficiently sync changes to AWS, and '
'invalidate CDNs.',
long_description=_read_file('README.rst'),
license='MIT',
url='https://github.com/gebn/wood',
author='George Brighton',
author_email='oss@gebn.co.uk',
packages=find_packages(),
zip_safe=True,
install_requires=[
'backoff',
'boto3',
'botocore',
'more-itertools',
'requests'
],
test_suite='nose.collector',
tests_require=[
'coverage',
'coveralls',
'mock',
'nose'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)