-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (53 loc) · 1.9 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
53
54
55
56
57
import os
import setuptools
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
with open(os.path.join("src/peakrdl_socgen", "__about__.py"), encoding='utf-8') as f:
v_dict = {}
exec(f.read(), v_dict)
version = v_dict['__version__']
setuptools.setup(
name="peakrdl-socgen",
version=version,
author="Risto Pejasinovic",
author_email="[email protected]",
description="Generate SoC interconnect",
long_description=long_description,
url="https://gitlab.cern.ch/socrates/peakrdl/PeakRDL-socgen",
package_dir={'': 'src'},
packages=[
'peakrdl_socgen',
],
package_data={'peakrdl_socgen' : ['templates/*']},
include_package_data=True,
install_requires=[
"systemrdl-compiler>=1.25.0",
"Jinja2>=3.0.0",
],
entry_points = {
"peakrdl.exporters": [
'socgen = peakrdl_socgen.__peakrdl__:Exporter'
]
},
classifiers=(
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Topic :: Hardware Development :: Documentation",
),
project_urls={
"Source": "https://gitlab.cern.ch/socrates/peakrdl/PeakRDL-socgen",
"Tracker": "https://gitlab.cern.ch/socrates/peakrdl/PeakRDL-socgen/issues",
},
)