-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (36 loc) · 1.13 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
42
43
44
45
46
47
48
49
50
from setuptools import setup, find_packages
import codecs
import os
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='nwpc-ecflow-collector',
version='1.0.0',
description='An ecFlow collector at NWPC.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/perillaroc/nwpc-system-collector',
author='perillaroc',
author_email='perillaroc@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6'
],
keywords='nwpc ecflow collector',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=[
'click',
'PyYAML',
'requests',
'nwpc_workflow_model<0.4'
],
extras_require={
'test': ['pytest'],
'grpc': ['grpcio', 'googleapis-common-protos']
},
entry_points={}
)