-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (30 loc) · 1.02 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
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='eda-container-wrapper',
description="Generic wrapper tool around open source EDA tools that runs Docker containers",
packages=["edacontainerwrapper"],
use_scm_version={
"relative_to": __file__,
"write_to": "edacontainerwrapper/version.py",
},
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/librecores/eda-container-wrapper',
author="Stefan Wallentowitz",
author_email='[email protected]',
classifiers=[
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Topic :: Utilities",
],
entry_points={"console_scripts": [
"eda-container-wrapper = edacontainerwrapper.main:main",
]},
setup_requires=[
"setuptools_scm",
],
install_requires=[
]
)