-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
34 lines (31 loc) · 1 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
#!/usr/bin/env python
# from setuptools import setup, find_packages
from distutils.core import setup
VERSION = '0.1.1'
DESCRIPTION = 'hassle free project switching'
setup(
name='swproject',
version=VERSION,
description=DESCRIPTION,
author='ybrs',
license='MIT',
url="https://github.com/ybrs/project-switcher",
author_email='[email protected]',
packages=['swproject'],
dependency_links = ['https://github.com/TomAnthony/itermocil/archive/master.zip#egg=itermocil-0.1.8'],
install_requires = ['itermocil'],
entry_points={
'console_scripts': [
'swproject = swproject.switcher:main'
]
},
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)