-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 728 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 728 Bytes
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
"""Install Foremast Lathe."""
from setuptools import find_packages, setup
with open('README.rst') as readme_handle:
LONG_DESCRIPTION = readme_handle.read()
setup(
name='foremast ui',
description='Foremast configuration generator web UI.',
long_description=LONG_DESCRIPTION,
author='',
author_email='',
install_requires=[
'click',
'connexion',
'foremast',
],
packages=find_packages(where='src'),
package_dir={'': 'src'},
include_package_data=True,
setup_requires=['setuptools_scm'],
use_scm_version={'local_scheme': 'dirty-tag'},
entry_points={
'console_scripts': [
'foremast_ui=foremast_ui.__main__:main',
],
}, )