forked from metabolize/werkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·39 lines (35 loc) · 1.37 KB
/
setup.py
File metadata and controls
executable file
·39 lines (35 loc) · 1.37 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
from setuptools import setup, find_packages
# Set version_info[__version__], while avoiding importing numpy, in case numpy
# and vg are being installed concurrently.
# https://packaging.python.org/guides/single-sourcing-package-version/
version_info = {}
exec(open("werkit/package_version.py").read(), version_info)
with open("README.md") as f:
readme = f.read()
with open("requirements.txt") as f:
install_requires = f.read()
setup(
name="werkit",
version=version_info["__version__"],
description="Toolkit for encapsulating Python-based computation into deployable and distributable tasks",
long_description=readme,
long_description_content_type="text/markdown",
author="Metabolize",
author_email="github@paulmelnikow.com",
url="https://github.com/metabolize/werkit",
project_urls={
"Issue Tracker": "https://github.com/metabolize/werkit/issues",
"Documentation": "https://werkit.readthedocs.io/en/stable/",
},
packages=find_packages(),
install_requires=install_requires,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: System :: Distributed Computing",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
],
)