File: setup.py

package info (click to toggle)
python-fysom 1.0.19-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 144 kB
  • ctags: 98
  • sloc: python: 571; makefile: 3
file content (24 lines) | stat: -rwxr-xr-x 980 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
#!/usr/bin/env python

from setuptools import setup

if __name__ == '__main__':
    setup(
          name = 'fysom',
          version = '1.0.19',
          description = '''pYthOn Finite State Machine''',
          long_description = '''''',
          author = "Mansour Behabadi, Jake Gordon, Maximilien Riehl, Stefano",
          author_email = "mansour@oxplot.com, jake@codeincomplete.com, maximilien.riehl@gmail.com, ",
          license = 'MIT',
          url = 'https://github.com/mriehl/fysom',
          scripts = [],
          packages = ['fysom'],
          py_modules = [],
          classifiers = ['Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', 'Natural Language :: English', 'Operating System :: OS Independent', 'Topic :: Scientific/Engineering'],
             #  data files
             # package data
          
          
          zip_safe=True
    )