-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 702 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 702 Bytes
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
from setuptools import setup, find_packages
import pathlib
import os
here = pathlib.Path(__file__).parent.resolve()
with open(os.path.join(here, 'README.md'), 'r',encoding='UTF-8') as mdFile:
long_description = mdFile.read()
setup(
name='dynamic-links',
version='0.2.2',
packages=find_packages(),
url='https://github.com/picpic2013/dlframe-back',
license='MIT',
author='PIC',
author_email='picpic2019@gmail.com',
description='a calculation framework',
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.10, <4",
install_requires=[
'websockets==10.3', 'numpy', 'Pillow'
]
)