-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 884 Bytes
/
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
# Copyright (c) 2018 WeFindX Foundation, CLG.
# All Rights Reserved.
from setuptools import find_packages, setup
with open('README.rst', 'r') as f:
long_description = f.read()
setup(
name='metaform',
version='1.0.2.4',
description='A utility for defining metadata for data types and formats.',
long_description=long_description,
url='https://gitlab.com/wefindx/metaform',
author='Mindey',
author_email='[email protected]',
license='ASK FOR PERMISSIONS',
packages=find_packages(exclude=['docs', 'tests*']),
install_requires=[
"metawiki",
"typology",
"metadir",
"tinydb",
"python-dateutil",
],
extras_require={
'develop': [
'pre-commit==1.18.3',
'coverage==4.5.4',
'flake8==3.7.8',
'isort==4.3.21',
],
},
zip_safe=False
)