-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 733 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 733 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
25
26
#!/usr/bin/env python
# -*- coding: utf-8
from sys import version_info
from io import open
from setuptools import setup, find_packages
setup(
name='ipycondor',
version='0.0.4',
description='IPython binding for HTCondor',
author='Mingxuan Lin; Lukas Koschmieder',
license='GPL',
packages=['ipycondor'],
requires=['pandas', 'qgrid', 'htcondor'],
url='https://github.com/gdlmx/ipycondor',
use_2to3=False,
include_package_data=True,
classifiers=[
'Intended Audience :: End Users',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Utilities'],
keywords=['HTCondor', 'IPython']
)