63 lines
1.4 KiB
Python
63 lines
1.4 KiB
Python
|
#!/usr/bin/env python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
import os
|
||
|
import re
|
||
|
|
||
|
from setuptools import setup, find_packages
|
||
|
|
||
|
|
||
|
def get_version(package):
|
||
|
"""
|
||
|
Return package version as listed in `__version__` in `init.py`.
|
||
|
"""
|
||
|
with open(os.path.join(package, "__init__.py")) as f:
|
||
|
return re.search("__version__ = ['\"]([^'\"]+)['\"]", f.read()).group(1)
|
||
|
|
||
|
|
||
|
def get_long_description():
|
||
|
"""
|
||
|
Return the README.
|
||
|
"""
|
||
|
with open("README.md", encoding="utf8") as f:
|
||
|
return f.read()
|
||
|
|
||
|
|
||
|
def get_packages(package):
|
||
|
"""
|
||
|
Return root package and all sub-packages.
|
||
|
"""
|
||
|
return [
|
||
|
dirpath
|
||
|
for dirpath, dirnames, filenames in os.walk(package)
|
||
|
if os.path.exists(os.path.join(dirpath, "__init__.py"))
|
||
|
]
|
||
|
|
||
|
module_name="halfapi"
|
||
|
setup(
|
||
|
name=module_name,
|
||
|
python_requires=">=3.7",
|
||
|
version=get_version(module_name),
|
||
|
url="https://gite.lirmm.fr/newsi/api/halfapi",
|
||
|
long_description=get_long_description(),
|
||
|
long_description_content_type="text/markdown",
|
||
|
packages=get_packages(module_name),
|
||
|
package_data={
|
||
|
'halfapi': ['lib/*', 'models/*']
|
||
|
},
|
||
|
install_requires=[
|
||
|
"click",
|
||
|
"half_orm",
|
||
|
"jwt",
|
||
|
"starlette",
|
||
|
"uvicorn"],
|
||
|
extras_require={
|
||
|
"tests":["pytest", "requests"],
|
||
|
},
|
||
|
entry_points={
|
||
|
"console_scripts":[
|
||
|
"halfapi=halfapi.cli:cli"
|
||
|
]
|
||
|
}
|
||
|
)
|