-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 727 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 727 Bytes
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
from setuptools import setup, find_packages
# with open("README.md", "r", encoding="utf-8") as fh:
# long_description = fh.read()
with open('version.txt', "r", encoding="utf-8") as f:
version = f.read().strip()
setup(
name="podaac-cloud-notification-message-schema",
version=version,
description="PO.DAAC Cloud Notification Message Schema",
url='https://github.com/podaac/cloud-notification-message-schema',
author='PO.DAAC',
author_email='podaac@podaac.jpl.nasa.gov',
install_requires=[
],
extras_require={
'testing': [
'pytest==5.3.5'
]
},
packages=['.'],
package_data={
'samples': ['*.json']
},
include_package_data=True
)