forked from bali-framework/bali
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (31 loc) · 948 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
28
29
30
31
32
33
34
35
36
import bali
from setuptools import find_packages, setup
def read(f):
return open(f, 'r', encoding='utf-8').read()
# https://pip.pypa.io/en/latest/user_guide/#fixing-conflicting-dependencies
INSTALL_REQUIREMENTS = read('requirements.txt').splitlines()
setup(
name='bali-core',
version=bali.__version__,
description='Simplify FastAPI integrate gRPC services development',
long_description=read('README.md'),
long_description_content_type='text/markdown',
url='https://github.com/bali-framework/bali',
author='Josh.Yu',
author_email='[email protected]',
license='MIT',
install_requires=INSTALL_REQUIREMENTS,
packages=find_packages(
exclude=[
'examples',
'examples.*',
'tests',
'tests.*',
'docker',
'docs',
]
),
package_data={'bali': ['db/*.pyi']},
include_package_data=True,
zip_safe=False,
)