-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
executable file
·38 lines (31 loc) · 1.04 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
37
38
#!/usr/bin/env python
import os
import setuptools # for zip_safe and install_requires
from distutils.core import setup
with open('README.rst') as readme:
long_description = readme.read()
with open('requirements.txt') as reqs:
install_requires = [
line for line in reqs.read().split('\n') if (line and not
line.startswith('--'))
]
setup(
name='gorun',
version='1.6',
description='Wrapper on pyinotify for running commands (often tests)',
long_description=long_description,
author='Peter Bengtsson',
author_email='[email protected]',
url='http://github.com/peterbe/python-gorun',
license='BSD',
classifiers=[
'Programming Language :: Python :: 2',
'Intended Audience :: Developers',
'Operating System :: POSIX :: Linux',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Build Tools',
],
scripts=['gorun.py'],
zip_safe=False,
install_requires=install_requires,
)