-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (35 loc) · 1.07 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
import codecs
import os.path
from setuptools import find_packages, setup
HERE = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
return codecs.open(os.path.join(HERE, *parts), "r").read()
setup(
name="pynamodb_utils",
version="1.5.1",
author="Michal Murawski",
author_email="mmurawski777@gmail.com",
description="Utilities package for pynamodb.",
long_description=read("README.md"),
long_description_content_type="text/markdown",
url="https://github.com/micmurawski/pynamodb-utils/",
package_dir={"": "src"},
packages=find_packages(
where="./src",
exclude=(
'build',
'tests',
)
),
install_requires=["pynamodb>=6.0.0,<7.0.0"],
include_package_data=True,
python_requires=">=3.6",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)