-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 857 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
from Cython.Build import cythonize
setup(
ext_modules = cythonize("motorcontrollib/Motors.pyx",annotate=True),
name='motorcontrollib',
version='0.1.7',
license='Apache License 2.0',
author='William Dove',
author_email='williamtdove@gmail.com',
description='A Motor Control Library for Python',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url='https://github.com/wDove1/motorcontrollib',
packages=find_packages(include=['motorcontrollib']),
#install_requires=['RPi.GPIO'],
classifiers=["Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"],
python_requires='>=3.7'
)