-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (38 loc) · 1.16 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
39
40
41
from setuptools import setup
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
long_description = ''
def get_version():
with open("sheepdog/__init__.py") as f:
for line in f:
if line.startswith("__version__"):
return line[15:-2]
raise Exception("Could not find version number")
setup(
name='Sheepdog',
version=get_version(),
author='Adam Greig',
author_email='adam@adamgreig.com',
packages=['sheepdog'],
url='http://sheepdog.readthedocs.org',
license='MIT',
description='Shepherd GridEngine',
long_description=long_description,
test_suite='nose.collector',
tests_require=['nose', 'mock'],
install_requires=[
"Flask >= 0.10.1",
"paramiko == 1.13.0"
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Topic :: Scientific/Engineering',
],
)