-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 891 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 891 Bytes
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
from setuptools import setup
from setuptools import find_packages
import os
import exceltp
SCRIPTS = ['bin/exceltp']
# On Windows we also need additional batch files to run the above scripts
if os.name == "nt":
SCRIPTS += ['bin/exceltp.bat']
setup(name=exceltp.__module_name__,
version=exceltp.__version__,
description=exceltp.__doc__.strip(),
author='morenice',
author_email='hyoungguyo@hotmail.com',
url='https://github.com/morenice/excellent.git',
scripts=SCRIPTS,
license=exceltp.__license__,
packages=find_packages(),
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development',
'Topic :: Utilities'
]
)