-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
36 lines (35 loc) · 1.42 KB
/
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
33
34
35
36
from setuptools import setup, find_packages
setup(
name='iac-protocol',
version='0.301',
license='BSD',
author='Risto Stevcev',
author_email='risto1@gmail.com',
url='https://github.com/Risto-Stevcev/iac-protocol',
long_description=open("README.rst","r").read(),
packages=find_packages(),
description="An interface/protocol that provides inter-application communication and scripting.",
entry_points = {
'console_scripts': ['iacs=iac.server:main',
'iaci=iac.interpreter:main',
'iacmodify=iac.modify_interfaces:main'],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Home Automation',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)',
'Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator',
'Topic :: Software Development :: Interpreters',
'Topic :: Software Development :: User Interfaces',
'Topic :: Utilities',
],
)