forked from ioos/thredds_crawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (29 loc) · 1.17 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
from __future__ import with_statement
from setuptools import setup, find_packages
from thredds_crawler import __version__
def readme():
with open('README.md') as f:
return f.read()
reqs = [line.strip() for line in open('requirements.txt')]
setup(
name = "thredds_crawler",
version = __version__,
description = "A Python library for crawling THREDDS servers",
long_description = readme(),
license = 'GPLv3',
author = "Kyle Wilcox",
author_email = "[email protected]",
url = "https://github.com/asascience-open/thredds_crawler",
packages = find_packages(),
install_requires = reqs,
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
],
include_package_data = True,
)