Skip to content

Commit eed1ffe

Browse files
author
Wu
committed
setup package
1 parent 9424d10 commit eed1ffe

File tree

3 files changed

+34
-1
lines changed

3 files changed

+34
-1
lines changed

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1-
dist*/
1+
# building results
2+
build/
3+
dist/
4+
*egg-info/
5+
6+
# test
27
test/
38

9+
# temp file
410
*.pyc
511
*.log

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
recursive-include pyaddin/res *

setup.py

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name = "pyAddin",
5+
version = "0.1",
6+
keywords = ("python", "vba", "excel", "addin"),
7+
description = "python-vba Excel addin",
8+
long_description = "Excel addin template combined VBA with Python",
9+
license = "MIT Licence",
10+
author = "dothinking",
11+
author_email = "train8808@gmail.com",
12+
packages = find_packages(exclude=["test", "dist"]),
13+
include_package_data = True,
14+
install_requires=[
15+
'argparse',
16+
'PyYAML>=3.13',
17+
'pywin32>=224'
18+
],
19+
zip_safe=False,
20+
platforms = "windows",
21+
entry_points = {
22+
'console_scripts': [
23+
'pyaddin = pyaddin.main:main'
24+
]
25+
}
26+
)

0 commit comments

Comments
 (0)