- Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
16 lines (14 loc) · 444 Bytes
/
Copy pathsetup.py
File metadata and controls
16 lines (14 loc) · 444 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python
fromdistutils.coreimportsetup
setup(name='iresolve',
version='0.1.3',
description='Python Import Resolver',
author='Mark Baas',
author_email='mark.baas123@gmail.com',
url='https://github.com/markbaas/python-iresolve',
py_modules=['iresolve'],
entry_points={
'console_scripts': ['iresolve=iresolve:main'],
},
install_requires=['pyflakes>=0.8.1']
)