-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
35 lines (31 loc) · 826 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
33
34
35
#!/usr/bin/python
# -*- coding: utf-8 -*-
from setuptools import setup
install_requires = [
"watchdog"
]
entry_points = """
[console_scripts]
codest=codest.main:main
"""
setup(
name="codest",
version="0.1.3",
url='https://github.com/psjay/codest',
license='MIT',
description="Coding at local like you do it on remote",
author='psjay',
author_email='[email protected]',
packages=['codest'],
install_requires=install_requires,
entry_points=entry_points,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Operating System :: POSIX",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development",
"Topic :: Utilities",
],
)