-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·24 lines (21 loc) · 795 Bytes
/
setup.py
File metadata and controls
executable file
·24 lines (21 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
import subprocess
import sys
from setuptools import setup, find_packages
from io import open
def parse_requirements(fn):
""" load requirements from a pip requirements file """
return [line for line in open(fn) if line and not line.startswith("#")]
reqs = parse_requirements("requirements.txt")
setup(name="ipython-cluster-helper",
version="0.6.4",
author="Rory Kirchner",
author_email="rory.kirchner@gmail.com",
description="Simplify IPython cluster start up and use for "
"multiple schedulers.",
long_description=(open('README.rst', encoding='utf-8').read()),
license="MIT",
zip_safe=False,
url="https://github.com/roryk/ipython-cluster-helper",
packages=find_packages(),
install_requires=reqs)