-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
39 lines (36 loc) · 2 KB
/
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
31
32
33
34
35
36
37
38
39
#from distutils.core import setup
from setuptools import setup
#import glob, os, re, sys
#import setuptools; setuptools.bootstrap_install_from = egg
#from setuptools import Extension, find_packages, setup
# read the contents of your README file
exec(open('pyusbus/version.py').read())
setup(
name = 'pyusbus', # How you named your package folder (MyLib)
packages = ['pyusbus'], # Chose the same as "name"
version = __version__, # Start with a small number and increase it with every change you make
license='gpl-3.0', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
description = 'Python API for ultrasound probes', # Give a short description about your library
author = 'Luc Jonveaux', # Type in your name
author_email = '[email protected]', # Type in your E-Mail
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url = 'http://un0rick.cc', # Provide either the link to your github or to your website
download_url = 'https://github.com/kelu124/pyusbus/', # I explain this later on
keywords = ['ultrasound', 'usb'], # Keywords that define your package best
install_requires=[ # I get to this in a second
'fx2','pyusb','opencv-python','usb','matplotlib','numpy'
],
classifiers=[
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Science/Research', # Define that your audience are developers
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', # Again, pick a license
'Programming Language :: Python :: 3', #Specify which pyhton versions that you want to support
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
zip_safe=False,
include_package_data=True,
)