forked from karakuri-products/gs2d-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 808 Bytes
/
setup.py
File metadata and controls
25 lines (21 loc) · 808 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 os
from setuptools import setup, find_packages
def read_requirements():
"""Parse requirements from requirements.txt."""
reqs_path = os.path.join('.', 'requirements.txt')
with open(reqs_path, 'r') as f:
requirements = [line.rstrip() for line in f]
return requirements
setup(
name='gs2d',
version='0.0.4',
description='gs2d: The Library for Generic Serial-bus Servo Driver kr-sac001 for Python',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Karakuri Products',
author_email='gs2d@krkrpro.com',
install_requires=read_requirements(),
url='https://github.com/karakuri-products/gs2d-python',
license='Apache License Version 2.0',
packages=find_packages(exclude=('tests', 'docs'))
)