-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (37 loc) · 1.18 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
DESCRIPTION = "Python script to fragment tasks for parallel execution"
LONG_DESCRIPTION = open('README.md').read()
NAME = "batch_launcher"
AUTHOR = "John Eppley"
AUTHOR_EMAIL = "[email protected]"
MAINTAINER = "John Eppley"
MAINTAINER_EMAIL = "[email protected]"
URL = 'http://github.com/jmeppley/batch_launcher'
DOWNLOAD_URL = 'http://github.com/jmeppley/batch_launcher'
LICENSE = 'Apache'
VERSION = '1.0.1'
setup(name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
url=URL,
download_url=DOWNLOAD_URL,
license=LICENSE,
scripts=['batch_launcher.py',],
packages=[],
python_requires="<3.11",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GPL License',
'Natural Language :: English',
'Programming Language :: Python :: 2.7'],
)