-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 1 KB
/
setup.py
File metadata and controls
32 lines (29 loc) · 1 KB
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
"""
@author:xmqsvip
Created on 2024-11-29
"""
from setuptools import setup, find_namespace_packages
with open('README.md', encoding='utf-8') as fp:
long_description = fp.read()
setup(name='soeasypack',
description='简易精准打包python项目和依赖环境 Easy and precise packaging of python projects and dependencies',
author='xmqsvip',
author_email='xmqsvip@qq.com',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_namespace_packages(),
package_data={
'soeasypack': ['dep_exe/**/*']},
include_package_data=True,
license='MIT',
version='0.9.12',
zip_safe=False,
url="https://github.com/XMQSVIP/SoEasyPack",
classifiers=[
'Programming Language :: Python :: 3',
],
keywords=["soeasypack", "packaging", "pyinstaller", "py2exe", "cxfreeze"],
install_requires=["setuptools", "objectgraph", "Cython"]
)
# python setup.py sdist
# twine upload dist/*