-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (40 loc) · 1.45 KB
/
setup.py
File metadata and controls
44 lines (40 loc) · 1.45 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
40
41
42
43
44
import sys
from setuptools import find_packages, setup
if sys.version_info < (3, 1):
raise NotImplementedError(
"""\n
##############################################################
# isd-s3 does not support python versions older than 3.1 #
##############################################################"""
)
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="ncar-isd-s3",
version='1.1.2', # See semantic versioning at https://semver.org/
author="NCAR RDA Team",
author_email="rdahelp@ucar.edu",
description="NCAR ISD S3 object storage utility",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/NCAR/isd-s3",
packages=find_packages(exclude=["tests", "tests.*"]),
install_requires=[
"boto3",
"botocore"
],
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers"
],
python_requires='>=3.1',
entry_points={"console_scripts": ["isd_s3=isd_s3.__main__:pipmain"]}
)