-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 795 Bytes
/
Copy pathsetup.py
File metadata and controls
34 lines (31 loc) · 795 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
28
29
30
31
32
33
34
from setuptools import setup
project_url = 'https://github.com/LudwigCRON/vpm'
requires = ['python_version>="3.5"']
setup(
name='pyvpm',
use_scm_version={
"relative_to": __file__,
"write_to": "vpm/version.py",
},
url=project_url,
license='MIT license',
author='Ludwig CRON',
author_email='ludwig.cron@gmail.com',
description='Verilog Package Manager',
long_description=open("README.md").read(),
zip_safe=False,
classifiers=[],
platforms='any',
packages=["vpm"],
include_package_data=True,
install_requires=requires,
setup_requires=[
'setuptools_scm',
],
entry_points={
'console_scripts': [
'vpm = vpm:cli_main',
],
},
keywords=['vpm', 'verilog', 'package'],
)