-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 723 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (23 loc) · 723 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
import pip
import importlib
import setuptools
from os import path
# read the contents of your README file
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md')) as f:
long_description = f.read()
install_requires=['smbus2',
'fastlogging',
'pyyaml',
]
setuptools.setup(
name='scuttlepy',
version='0.0.1',
description='SCUTTLE Python Library',
packages=setuptools.find_packages(),
install_requires=install_requires,
keywords=['scuttle','robot','python'],
url='https://github.com/ansarid/scuttlepy',
long_description=long_description,
long_description_content_type='text/markdown'
)