-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (24 loc) · 959 Bytes
/
setup.py
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
from setuptools import setup, find_packages
VERSION = '1.0.0'
NAME = "eric6_diff_merge"
with open("README.md","r",encoding="utf-8") as fp:
long_description = fp.read()
setup(name=NAME,
version=VERSION,
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='python、python diff merge',
author='Lin JH',
author_email='[email protected]',
url='https://github.com/625781186/eric6_diff_merge',
license='GPL-3.0',
description="python diff merge tool.",
long_description=long_description,
long_description_content_type='text/markdown', # This is important
# --------------------------------------------#
# package_dir={'source': './gitpyman'},
packages=find_packages(),
include_package_data=True, # 和下面的写法冲突
zip_safe=False,
# copy .py file to python's Srcipts
scripts=[],
)