-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
30 lines (27 loc) · 1020 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
26
27
28
29
30
import os
from setuptools import setup
def readfile(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(
name = 'opto',
py_modules = ['opto'],
version = '0.1',
description = 'Python interface to Optotune focus-tunable lenses',
long_description=(readfile('README.rst')),
license='MIT',
author = 'Steven A. Cholewiak',
author_email = '[email protected]',
url = 'https://github.com/OrganicIrradiation/opto',
download_url = 'https://github.com/OrganicIrradiation/opto/tarball/v0.1',
keywords = ['Optotune', 'optics', 'lens'],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules'],
install_requires=['pyserial'],
)