12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #!/usr/bin/env python
- """
- script to install pwman3
- """
- #from distutils.core import setup
- from setuptools import Command, setup
- import pwman
- setup(name=pwman.appname,
- version=pwman.version,
- description=pwman.description,
- author=pwman.author,
- author_email=pwman.authoremail,
- url=pwman.website,
- license="GNU GPL",
- packages=['pwman',
- 'pwman.data',
- 'pwman.data.drivers',
- 'pwman.exchange',
- 'pwman.ui',
- 'pwman.util'],
- scripts=['scripts/pwman3'],
- zip_safe=False,
- install_requires=['pycrypto>=2.6',
- 'colorama>=0.2.4'],
- classifiers=[
- 'Environment :: Console',
- 'Intended Audience :: End Users/Desktop',
- 'Intended Audience :: Developers',
- 'Intended Audience :: System Administrators',
- 'License :: GPL version 3',
- 'Operating System :: MacOS :: MacOS X',
- 'Operating System :: Microsoft :: Windows',
- 'Operating System :: POSIX',
- 'Programming Language :: Python',
- 'Requires-Python:: 2.7',]
- )
|