44 lines
991 B
Python
44 lines
991 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
|
||
|
from distutils.core import setup
|
||
|
from setuptools import setup, find_packages
|
||
|
|
||
|
# usage:
|
||
|
# python setup.py bdist_wininst generate a window executable file
|
||
|
# python setup.py bdist_egg generate a egg file
|
||
|
# Release information about eway
|
||
|
|
||
|
version = "5.0.16"
|
||
|
description = "appPublic"
|
||
|
author = "yumoqing"
|
||
|
email = "yumoqing@icloud.com"
|
||
|
|
||
|
packages=find_packages()
|
||
|
package_data = {}
|
||
|
|
||
|
setup(
|
||
|
name="appPublic",
|
||
|
version=version,
|
||
|
|
||
|
# uncomment the following lines if you fill them out in release.py
|
||
|
description=description,
|
||
|
author=author,
|
||
|
author_email=email,
|
||
|
|
||
|
install_requires=[
|
||
|
],
|
||
|
packages=packages,
|
||
|
package_data=package_data,
|
||
|
keywords = [
|
||
|
],
|
||
|
classifiers = [
|
||
|
'Development Status :: 3 - Alpha',
|
||
|
'Operating System :: OS Independent',
|
||
|
'Programming Language :: Python',
|
||
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
||
|
'Framework :: utils',
|
||
|
],
|
||
|
platforms= 'any'
|
||
|
)
|