This repository was archived by the owner on Jul 31, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (35 loc) · 1.3 KB
/
setup.py
File metadata and controls
39 lines (35 loc) · 1.3 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
requires = ['boto>=2.38.0',
'python-dateutil>=2.1,<3.0.0',
'PyYAML>=3.11',
'XlsxWriter==0.6.7',
'pytz==2014.10']
setup(
name='skinflint',
version=open(os.path.join('skinflint', '_version')).read(),
description='Tools for processing AWS detailed billing reports',
long_description=open('README.md').read(),
author='Mitch Garnaat',
author_email='mitch@scopely.com',
url='https://github.com/scopely-devops/skinflint',
packages=find_packages(exclude=['tests*']),
package_data={'skinflint': ['_version']},
package_dir={'skinflint': 'skinflint'},
install_requires=requires,
license=open("LICENSE").read(),
classifiers=(
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4'
),
)