-
Notifications
You must be signed in to change notification settings - Fork 48
/
setup.py
32 lines (30 loc) · 1 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "ipyxact",
version = "0.3.2",
author = "Olof Kindgren",
author_email = "[email protected]",
description = "Python IP-Xact handling library",
license = "MIT",
keywords = "ipxact IP-Xact HDL ASIC FPGA",
url = "https://github.com/olofk/ipyxact",
packages = ['ipyxact'],
long_description = read('README.md'),
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
],
entry_points={"console_scripts": ["ipxact2v = ipyxact.ipxact2v:main"]},
install_requires=[
'pyyaml',
],
)