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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from setuptools.command.install import install as _install
class install(_install):
def pre_install_script(self):
pass
def post_install_script(self):
pass
def run(self):
self.pre_install_script()
_install.run(self)
self.post_install_script()
if __name__ == '__main__':
setup(
name = 'fysom',
version = '2.1.6',
description = 'pYthOn Finite State Machine',
long_description = '',
long_description_content_type = None,
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'
],
keywords = '',
author = 'Mansour Behabadi, Jake Gordon, Maximilien Riehl, Stefano',
author_email = 'mansour@oxplot.com, jake@codeincomplete.com, maximilien.riehl@gmail.com, unknown@domain.invalid',
maintainer = '',
maintainer_email = '',
license = 'MIT',
url = 'https://github.com/mriehl/fysom',
project_urls = {},
scripts = [],
packages = ['fysom'],
namespace_packages = [],
py_modules = [],
entry_points = {},
data_files = [],
package_data = {},
install_requires = [],
dependency_links = [],
zip_safe = True,
cmdclass = {'install': install},
python_requires = '',
obsoletes = [],
)
|