-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 1.18 KB
/
setup.py
File metadata and controls
39 lines (37 loc) · 1.18 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
from setuptools import setup, find_packages
__version__ = (0, 1, 0)
setup(
name="cf_cell_methods",
description="Automated processing of CF Conventions cell_methods metadata "
"content",
keywords="climate meteorology cf conventions metadata",
packages=find_packages(),
version=".".join(str(d) for d in __version__),
url="http://www.pacificclimate.org/",
author="Rod Glover",
author_email="rglover@uvic.ca",
install_requires="""
sly
""".split(
"\n"
),
zip_safe=True,
include_package_data=True,
tests_require=["pytest"],
classifiers="""
Development Status :: 2 - Pre-Alpha
Environment :: Web Environment
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: OS Independent
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Internet
Topic :: Scientific/Engineering
Topic :: Database
Topic :: Software Development :: Libraries :: Python Modules
""".split(
"\n"
),
)