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

Subversion Repositories nocmodel

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

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 4 dargor
# Version: 0.2
9
# Date:    05-07-2011
10 2 dargor
 
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 4 dargor
# 05-07-2011 : (OD) second release
33 2 dargor
#
34
 
35
from distutils.core import setup
36
 
37
classifiers = """\
38
Development Status :: 3 - Alpha
39
Intended Audience :: Developers
40
License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
41
Operating System :: OS Independent
42
Programming Language :: Python
43
Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)
44
"""
45
 
46
setup(name='nocmodel',
47
        version='0.1',
48
        description='Network-on-Chip modeling library',
49
        author='Oscar Diaz',
50
        author_email='dargor@opencores.org',
51
        url='http://opencores.org/project,nocmodel',
52
        license='LGPL',
53
        requires=['networkx', 'myhdl'],
54
        platforms=["Any"],
55
        keywords="HDL ASIC FPGA SoC NoC hardware design",
56
        classifiers=filter(None, classifiers.split("\n")),
57
        packages=[
58
            'nocmodel',
59 3 dargor
            'nocmodel.basicmodels',
60 2 dargor
          ],
61
      )

powered by: WebSVN 2.1.0

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