OpenCores
URL https://opencores.org/ocsvn/nocmodel/nocmodel/trunk

Subversion Repositories nocmodel

[/] [nocmodel/] [trunk/] [setup.py] - Blame information for rev 2

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 dargor
#!/usr/bin/env python
2
# -*- coding: utf-8 -*-
3
 
4
#
5
# NoCmodel - setup file
6
#
7
# Author:  Oscar Diaz
8
# Version: 0.1
9
# Date:    03-03-2011
10
 
11
#
12
# This code is free software; you can redistribute it and/or
13
# modify it under the terms of the GNU Lesser General Public
14
# License as published by the Free Software Foundation; either
15
# version 2.1 of the License, or (at your option) any later version.
16
#
17
# This code is distributed in the hope that it will be useful,
18
# but WITHOUT ANY WARRANTY; without even the implied warranty of
19
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20
# Lesser General Public License for more details.
21
#
22
# You should have received a copy of the GNU Lesser General Public
23
# License along with this library; if not, write to the
24
# Free Software  Foundation, Inc., 59 Temple Place, Suite 330,
25
# Boston, MA  02111-1307  USA
26
#
27
 
28
#
29
# Changelog:
30
#
31
# 03-03-2011 : (OD) initial release
32
#
33
 
34
from distutils.core import setup
35
 
36
classifiers = """\
37
Development Status :: 3 - Alpha
38
Intended Audience :: Developers
39
License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
40
Operating System :: OS Independent
41
Programming Language :: Python
42
Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)
43
"""
44
 
45
setup(name='nocmodel',
46
        version='0.1',
47
        description='Network-on-Chip modeling library',
48
        author='Oscar Diaz',
49
        author_email='dargor@opencores.org',
50
        url='http://opencores.org/project,nocmodel',
51
        license='LGPL',
52
        requires=['networkx', 'myhdl'],
53
        platforms=["Any"],
54
        keywords="HDL ASIC FPGA SoC NoC hardware design",
55
        classifiers=filter(None, classifiers.split("\n")),
56
        packages=[
57
            'nocmodel',
58
          ],
59
      )

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.