-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (22 loc) · 1003 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
from setuptools import setup, find_packages
MODULE_NAME = 'neomaril-codex'
MODULE_NAME_IMPORT = 'neomaril_codex'
REPO_NAME = 'mlops-neomaril-codex'
MODULE_VERSION='2.1.1'
def requirements_from_pip(filename='requirements.txt'):
with open(filename, 'r') as pip:
return [l.strip() for l in pip if not l.startswith('#') and l.strip()]
setup(name=MODULE_NAME,
description="Python tools for interact with Neomaril",
url='https://datarisk-io.github.io/mlops-neomaril-codex/',
author="Datarisk",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
package_dir={'': 'src'},
packages=find_packages('src'),
version=MODULE_VERSION,
download_url=f'https://github.com/datarisk-io/mlops-neomaril-codex/archive/refs/tags/v{MODULE_VERSION}.tar.gz',
install_requires=requirements_from_pip(),
include_package_data=True,
zip_safe=False,
classifiers=['Programming Language :: Python :: 3'])