generated from IKNL/v6-boilerplate-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 1.01 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
from pathlib import Path
from codecs import open
from setuptools import setup, find_packages
# we're using a README.md, if you do not have this in your folder, simply
# replace this with a string.
here = Path(__file__).parent.resolve()
with open(here / 'README.md', encoding='utf-8') as f:
long_description = f.read()
# Here you specify the meta-data of your package. The `name` argument is
# needed in some other steps.
setup(
name='v6-diagnostics',
version="0.1.0",
description='vantage6 node diagnostic tools',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/vantage6/v6-diagnostics',
packages=find_packages(),
python_requires='>=3.6',
install_requires=[
'vantage6-client',
'vantage6-algorithm-tools',
'requests',
'pyjwt',
'rich',
'click'
],
entry_points={
'console_scripts': [
'vtest=cli.test:cli_test',
],
},
)