-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (39 loc) · 1.33 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
38
39
40
41
42
43
44
45
from setuptools import find_packages, setup
# get package version
with open('VERSION') as version_file:
version = version_file.read().strip()
# assemble requirements
with open('requirements_pkg.txt') as f:
requirements_pkg = f.read().splitlines()
with open('requirements_dev.txt') as f:
requirements_dev = f.read().splitlines()
# load the README file and use it as the long_description for PyPI
with open('README.md', 'r') as f:
readme = f.read()
setup(
name='bodywork_pipeline_utils',
description='Utilities for helping with pipeline development and integration with 3rd party MLOps services.', # noqa
long_description=readme,
long_description_content_type='text/markdown',
version=version,
license='Apache 2.0',
author='Bodywork Machine Learning Ltd.',
author_email='[email protected]',
url='https://www.bodyworkml.com',
project_urls={
'Source': 'https://github.com/bodywork-ml/bodywork-pipeline-utils'
},
package_dir={'': 'src'},
packages=find_packages(where='src'),
include_package_data=True,
python_requires=">=3.8.*",
install_requires=requirements_pkg,
extras_require={
'dev': requirements_dev
},
zip_safe=True,
classifiers=[
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
]
)