apppublic/setup.py

48 lines
1022 B
Python
Raw Normal View History

2019-07-16 16:33:07 +08:00
# -*- coding: utf-8 -*-
2022-06-15 15:57:42 +08:00
from appPublic.version import __version__
2022-02-24 13:24:49 +08:00
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
2019-07-16 16:33:07 +08:00
# usage:
# python setup.py bdist_wininst generate a window executable file
# python setup.py bdist_egg generate a egg file
# Release information about eway
2022-06-15 15:57:42 +08:00
version = __version__
2019-07-29 09:59:10 +08:00
name = "appPublic"
2019-07-16 16:33:07 +08:00
description = "appPublic"
author = "yumoqing"
2019-07-29 09:59:10 +08:00
email = "yumoqing@gmail.com"
2019-07-16 16:33:07 +08:00
package_data = {}
setup(
2022-02-24 13:24:49 +08:00
name="appPublic",
version=version,
# uncomment the following lines if you fill them out in release.py
description=description,
author=author,
author_email=email,
platforms='any',
install_requires=[
],
packages=[
"appPublic"
],
package_data=package_data,
keywords = [
],
2019-07-29 09:59:10 +08:00
url="https://github.com/yumoqing/appPublic",
2022-02-24 13:24:49 +08:00
long_description=description,
2019-07-29 09:59:10 +08:00
long_description_content_type="text/markdown",
2022-02-24 13:24:49 +08:00
classifiers = [
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
2019-07-29 09:59:10 +08:00
'License :: OSI Approved :: MIT License',
2022-02-24 13:24:49 +08:00
],
2019-07-16 16:33:07 +08:00
)