forked from jpetrucciani/bucketstore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·40 lines (34 loc) · 1.15 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
pip setup file
"""
import os
import codecs
from setuptools import setup
CURRENT_DIRECTORY = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(CURRENT_DIRECTORY, "README.md"), encoding="utf-8") as f:
LONG_DESCRIPTION = "\n" + f.read()
REQUIRED = ["boto3"]
setup(
name="bucketstore",
version="0.2.1",
description="A simple library for interacting with Amazon S3.",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author="Kenneth Reitz, Jacobi Petrucciani",
author_email="[email protected]",
url="https://github.com/jpetrucciani/bucketstore",
py_modules=["bucketstore"],
install_requires=REQUIRED,
license="MIT",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
],
)