-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (26 loc) · 912 Bytes
/
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
#!/usr/bin/env python
__version__ = "0.1.0"
from setuptools import setup
classes = """
Development Status :: 4 - Beta
License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Scientific/Engineering
Programming Language :: Python
Programming Language :: Python :: 2.7
Operating System :: POSIX :: Linux
"""
long_description = """Sublime: easy job submission"""
classifiers = [s.strip() for s in classes.split('\n') if s]
setup(name='sublime',
version=__version__,
long_description=long_description,
license="CC0",
description='Submission ninja',
author="Daniel McDonald",
author_email="[email protected]",
url='http://github.com/wasade/sublime',
install_requires=['click >= 3.3, < 4.0'],
classifiers=classifiers,
scripts=['sub']
)