-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (35 loc) · 1.35 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
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(name='fluidcondor',
version='0.0.0a0',
description='Helper tools for working with HTCondor computing cluster scheduler',
long_description=readme(),
url='https://github.com/GullumLuvl/fluidcondor',
author='GullumLuvl',
author_email='gullumluvlcodes'+('@')+'outlook.com',
classifiers=[
'Development Status :: 3 - Alpha',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Topic :: Utilities'
],
license="Unlicense",
keywords='cluster htcondor',
packages=['fluidcondor'],
package_dir={'fluidcondor': '.'},
#py_modules=['fluidcondor.condor_descript',
# 'fluidcondor.submitsplit',
# 'fluidcondor.condor_checklogs'],
install_requires=find_packages(),
entry_points = {
'console_scripts': ['condor_checklogs=condor_checklogs:main',
'condor_descript=condor_descript:main',
'submitsplit=submitsplit:main']
},
include_package_data=True,
zip_safe=False)