File: setup.py

package info (click to toggle)
vibes 0.3.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,684 kB
  • sloc: cpp: 6,120; python: 412; makefile: 214; sh: 13
file content (27 lines) | stat: -rw-r--r-- 975 bytes parent folder | download
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
#!/usr/bin/env python
import os
# from distutils.core import setup
from setuptools import setup, Distribution, Extension
import distutils

def read(fname):
    return open(os.path.join(os.path.dirname(__file__), fname)).read()

setup(name='vibes',
      version='0.2rc2',
      description='python Api for VIbes (VIsualizer for Intervals and Boxes)',
      long_description=read('README.md'),
      author='EnstaRobotics',
      author_email='ben.ensta@gmail.com',
      url='http://enstabretagnerobotics.github.io/VIBES/',
      packages=['vibes'],
      keywords = ['VIbes', 'Interval Arithmetics', 'Graphics Tools'], # arbitrary keywords
      license = 'LGPLv3',
      classifiers=[
        'Development Status :: 5 - Production/Stable',
        'Topic :: Utilities',
        'Topic :: Scientific/Engineering :: Visualization',
        'Operating System :: OS Independent',
        'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
      ],
)