-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 939 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
# setup.py
from setuptools import setup, find_packages
with open('requirements.txt', 'r') as f:
required = f.read().splitlines()
if __name__ == '__main__':
setup(
name='fosslight_cli',
version='1.0.0',
packages=find_packages(),
install_requires=required,
python_requires=">=3.8",
entry_points={
'console_scripts': [
"fosslight-cli = src.__main__:main",
]
},
license='Apache-2.0',
url='https://github.com/fosslight/fosslight_cli',
download_url='https://github.com/fosslight/fosslight_cli',
classifiers=[
'License :: OSI Approved :: Apache Software License',
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)