-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 1.06 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
from setuptools import setup, find_packages
with open('readme.md', 'r', encoding='utf-8') as f:
long_description = f.read()
with open('requirements.txt', 'r', encoding='utf-8') as pr:
install_requires = pr.readlines()
setup(
name='aryaxai',
use_scm_version=True,
setup_requires=['setuptools_scm'],
description='Full stack ML Observability with AryaXAI',
long_description=long_description,
long_description_content_type='text/markdown',
keywords='aryaxai, ML observability',
license='MIT',
url='https://xai.arya.ai/docs/introduction',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
packages=find_packages(where='.'),
python_requires='>=3.0',
install_requires=install_requires,
package_data={
'': ['*.md', '*.txt'],
'common/config': ['.env.*'],
},
)