forked from bmabey/provenance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·37 lines (33 loc) · 1.21 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']
}
setup(
name='provenance',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=['provenance', 'provenance.sftp', 'provenance.vis'],
setup_requires=['pytest>=3.0.0', 'pytest-runner'],
install_requires=[open('requirements.txt').read().strip().split('\n')],
tests_requires=[open('test_requirements.txt').read().strip().split('\n')],
extras_require=subpackages,
include_package_data=True,
description="Provenance and caching library for functions, built for creating lightweight machine learning pipelines.",
long_description=(open('README.rst').read() if exists('README.rst')
else ''),
author="Ben Mabey",
author_email="ben@benmabey.com",
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",
],
)