-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 828 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
from setuptools import setup
import os
thelibFolder = os.path.dirname(os.path.realpath(__file__))
requirementPath = thelibFolder + '/requirements.txt'
install_requires = []
if os.path.isfile(requirementPath):
with open(requirementPath) as f:
install_requires = f.read().splitlines()
with open(os.path.join(thelibFolder, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='easy_cozmo',
version='1.0.1',
author='Eduardo Feo-Flushing',
author_email='[email protected]',
packages=['easy_cozmo'],
url='http://github.com/EduardoFF/easy_cozmo',
license='LICENSE.txt',
description='Useful python wrappers for Cozmo SDK.',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=install_requires,
)