-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 936 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
with open('README.md') as readme_file:
README = readme_file.read()
long_description = readme_file.read()
setup(
name='wic',
packages=['wic'],
version='0.2',
license='apache-2.0',
description='winIDEA command line interface',
author='Juergen Schmid',
author_email='jur.schmid@gmail.com',
url='https://github.com/hacki11/wic',
keywords=['isystem', 'winidea', 'cli'],
install_requires=[
'click'
#, 'isystem.connect' not available for windows yet - needs to be installed manually
],
entry_points={
'console_scripts': ['wic=wic.cli:cli'],
},
classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
],
)