-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
59 lines (49 loc) · 1.49 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
56
57
58
59
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
import os
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
README = readme_file.read()
with open('HISTORY.rst') as history_file:
HISTORY = history_file.read()
with open(os.path.join('requirements', 'base.in')) as fp:
REQUIREMENTS = [x
for x in fp
if not x.startswith('boto3')]
setup(
author="Peter Demin",
author_email='peterdemin@gmail.com',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
description="AWS CloudWatch client library to send "
"metrics conveniently and efficiently",
entry_points={
'console_scripts': [
'awsme-test=awsme.cli:main',
],
},
extras_require={
'boto3': ['boto3'],
},
install_requires=REQUIREMENTS,
license="MIT license",
long_description=README + '\n\n' + HISTORY,
include_package_data=True,
keywords='awsme',
name='awsme',
packages=find_packages('src'),
package_dir={'': 'src'},
setup_requires=['pytest-runner'],
test_suite='tests',
tests_require=['pytest'],
url='https://github.com/peterdemin/awsme',
version='1.0.0',
zip_safe=False,
)