apppublic/setup.py

48 lines
1.1 KiB
Python
Raw Normal View History

2019-07-16 16:33:07 +08:00
# -*- 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
2019-07-29 09:59:10 +08:00
version = "5.0.18"
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
packages=find_packages()
package_data = {}
2019-07-29 09:59:10 +08:00
with open("README.md", "r") as fh:
long_description = fh.read()
2019-07-16 16:33:07 +08:00
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 = [
],
2019-07-29 09:59:10 +08:00
url="https://github.com/yumoqing/appPublic",
long_description=long_description,
long_description_content_type="text/markdown",
2019-07-16 16:33:07 +08:00
classifiers = [
'Operating System :: OS Independent',
2019-07-29 09:59:10 +08:00
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
2019-07-16 16:33:07 +08:00
],
)