-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (45 loc) · 1.44 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import pathlib
from setuptools import setup
with open('requirements.txt') as fp:
install_requires = fp.readlines()
with open('README.md') as fp:
readme = fp.read()
about = {}
version_file_path = pathlib.Path(__file__).parent / 'lascli' / '__version__.py'
exec(version_file_path.read_text('utf-8'), about)
setup(
name=about['__title__'],
version=about['__version__'],
description=about['__description__'],
long_description=readme,
long_description_content_type='text/markdown',
license=about['__license__'],
author=about['__author__'],
author_email=about['__author_email__'],
maintainer=about['__maintainer__'],
maintainer_email=about['__maintainer_email__'],
url=about['__url__'],
packages=[
'lascli',
'lascli.actions',
'lascli.parser',
],
entry_points={
'console_scripts': [
'las = lascli.__main__:main'
]
},
install_requires=install_requires,
platforms='Posix; MacOS X; Windows',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Internet'
]
)