-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsetup.py
35 lines (32 loc) · 1.14 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
import os.path
from setuptools import setup
def get_long_description():
descr = []
for fname in ('README.md',):
with open(fname) as f:
descr.append(f.read())
return '\n\n'.join(descr)
setup(
name="costBuddy",
license="MIT",
description="Taming AWS cost proactively",
long_description=get_long_description(),
author="A lot of people",
author_email="[email protected]",
packages=["src"],
python_requires='>=3.6',
classifiers=[
"Development Status :: 6 - Mature",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development",
"Topic :: Utilities",
], install_requires=['boto3', 'pytest'])