-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 710 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (21 loc) · 710 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
from setuptools import setup
from pathlib import Path
README = Path('README.md').read_text()
setup(
name='pycrafter4500',
version='0.7',
packages=['pycrafter4500'],
install_requires=['pyusb'],
# pypi metadata
author='Alexander Tomlinson',
author_email='tomlinsa@ohsu.edu',
description='A python interface to communicate over USB with the TI Lightcrafter 4500',
long_description=README,
long_description_content_type="text/markdown",
keywords='lightcrafter 4500 dlpc 350 projector texas',
url='https://pycrafter4500.readthedocs.io/en/latest/',
project_urls={
"Source Code": 'https://github.com/SivyerLab/pyCrafter4500',
},
license='GPL',
)