-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (32 loc) · 1.05 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
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name='fichub-cli-metadata',
author='Arbaaz Laskar',
author_email="[email protected]",
description="A metadata plugin for fetching Metadata from the Fichub API for the fichub-cli",
long_description=long_description,
long_description_content_type="text/markdown",
version='0.6.6',
license='Apache License',
url="https://github.com/fichub-cli-contrib/fichub-cli-metadata",
packages=find_packages(
include=['fichub_cli_metadata', 'fichub_cli_metadata.*']),
include_package_data=True,
install_requires=[
'fichub-cli>=0.9.3',
'rich>=10.4.0',
'sqlalchemy>=1.4.31'
],
entry_points= {
'console_scripts': [
'fichub_cli_metadata=fichub_cli_metadata.cli:app'
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)