-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
24 lines (22 loc) · 831 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
import incor
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='incor',
version=incor.__version__,
install_requires=['watchdog>=0.8.2', 'psutil>=4.3.0'],
description='INstant COde Runner compiles and executes the programs' +
'present in the mentioned folder' +
'instantaneously as and when changes are.',
url='https://github.com/lakshmanaram/Incor',
author='lakshmanaram, srivatsan-ramesh',
author_email='[email protected], [email protected]',
license='MIT',
packages=['incor'],
entry_points={
'console_scripts': ['incor=incor.main:main'],
},
keywords=['Algorithms', 'Competitive Programming',
'Automatic', 'run', 'compile', 'execute'],
zip_safe=False)