-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 804 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 804 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
29
from os import path
from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
# Get the long description from the relevant file
with open(path.join(here, 'README.md')) as f:
long_description = f.read()
setup(
name='metastore-lib',
packages=find_packages(exclude='tests'),
version=open('VERSION').read(),
description='A library for abstracting versioned metadata storage for data packages',
long_description=long_description,
long_description_content_type='text/markdown',
author='Shahar Evron',
author_email='shahar.evron@datopian.com',
install_requires=[
'pytz',
'six',
'typing',
'typing-extensions',
'python-dateutil>=2.7.0',
'fs',
'pygithub',
],
package_data={}
)