-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
executable file
·37 lines (31 loc) · 1.08 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
#!/usr/bin/env python
from os.path import exists
from setuptools import setup
import versioneer
subpackages = {
'sftp': ['paramiko'],
'google_storage': ['google-cloud'],
'vis': ['graphviz', 'frozendict'],
}
DESCRIPTION = 'Provenance and caching library for functions, built for creating lightweight machine learning pipelines.'
setup(
name='provenance',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=['provenance', 'provenance.sftp', 'provenance.vis'],
install_requires=[open('requirements.txt').read().strip().split('\n')],
extras_require=subpackages,
include_package_data=True,
description=DESCRIPTION,
long_description=(open('README.rst').read() if exists('README.rst') else ''),
author='Ben Mabey',
author_email='[email protected]',
url='http://github.com/bmabey/provenance',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
],
)