-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (31 loc) · 940 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
import setuptools
from setuptools import find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setuptools.setup(
name="Bifrost",
version="0.8.1",
author="Distributive",
author_email="[email protected]",
description="Python to JS intercommunication and execution",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Kings-Distributed-Systems/Bifrost",
packages=find_packages(),
package_data={
'': ['*.js','*.json']
},
include_package_data=False,
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3"
],
install_requires=[
"cloudpickle<2.1",
"numpy",
"xxhash",
"posix_ipc ; os_name == 'posix' and python_version < '3.8'",
],
python_requires='>=3.6'
)