-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (37 loc) · 1.23 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
40
from setuptools import setup, find_packages
import subprocess
import os, sys
import platform
with open("VERSION") as f:
version = f.read()
setup(
name="delegate_function",
version=version.strip(),
package_data={
'delegate_function': ['VERSION'],
},
description="Running methods in other processes.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License', # Again, pick a license
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
url="https://github.com/NVSL/delegate-function",
author="Steven Swanson",
author_email="[email protected]",
py_modules=["delegate_function"],
install_requires=["pytest-explicit",
"dill"],
entry_points={
'console_scripts' :[
'delegate-function-run=delegate_function:delegate_function_run'
]
},
)