-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (43 loc) · 1.49 KB
/
setup.py
File metadata and controls
52 lines (43 loc) · 1.49 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/python
# coding: utf-8
import os
from setuptools import setup, find_packages
cur_dir = os.path.abspath(os.path.dirname(__file__))
def read(path):
with open(path, "r") as _file:
return _file.read()
def read_req(name):
path = os.path.join(cur_dir, name)
return [req.strip() for req in read(path).splitlines() if req.strip()]
version_ns = {}
with open(os.path.join(cur_dir, "version.py")) as f:
exec(f.read(), {}, version_ns)
long_description = open("README.rst").read()
setup(
name="jobio",
version=version_ns["__version__"],
description="A bootstrap package to handle input and "
"output data for batch processes",
long_description=long_description,
author="Rasmus Munk",
author_email="munk1@live.dk",
packages=find_packages(),
url="https://github.com/rasmunk/jobio",
license="MIT",
keywords=["Job", "IO", "S3", "Batch"],
install_requires=read_req("requirements.txt"),
extras_require={
"test": read_req("tests/requirements.txt"),
"dev": read_req("requirements-dev.txt"),
},
entry_points={"console_scripts": ["jobio = jobio.cli.cli:run"]},
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)