Skip to content

Commit 6c208d6

Browse files
committed
Update files to make pip install possible
1 parent f2abccc commit 6c208d6

File tree

4 files changed

+37
-8
lines changed

4 files changed

+37
-8
lines changed

LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pico-python is Copyright (c) 2013 By:
1+
pico-python is Copyright (c) 2013-2016 By:
22
Colin O'Flynn <[email protected]>
33
Mark Harfouche <[email protected]>
44
All rights reserved.

README.md

+18-5
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,24 @@ System has support for:
1515

1616
Note the 'A' series covers a different ground than the non-A series! Check the programming manuals posted at http://www.picotech.com/document/ for details.
1717

18-
Installation Information
19-
------------------------------
18+
Getting DLLs
19+
------------
20+
21+
You will require the PicoScope DLLs for this package to work. The easiest method is to install the latest PicoScope software
22+
or SDK from https://www.picotech.com/downloads .
23+
24+
Installation Information from PyPI
25+
----------------------------------
26+
27+
You can install the program with a simple:
28+
```
29+
pip install picoscope
30+
```
31+
32+
You will require the DLLs (described above).
33+
34+
Installation Information from GIT
35+
---------------------------------
2036
If you will be getting updated code from git, use git clone to put the directory
2137
somewhere. Then do the following to generate a link to your git directory:
2238
```
@@ -28,9 +44,6 @@ If you want the normal installation (e.g. copies files to Python installation) u
2844
python setup.py install
2945
```
3046

31-
Currently the code is changing frequently. Thus you may wish to use the git clone + develop option to
32-
keep up with new changes.
33-
3447

3548
Similar Projects
3649
------------------------------

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

+16-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,26 @@
22

33
setup(
44
name = 'picoscope',
5-
version = '0.1',
5+
version = '0.4',
66
description = "Unofficial python wrapper for the PicoScope devices.",
77
author = "Colin O'Flynn, Mark Harfouche",
88
9-
license = 'FreeBSD',
9+
license = 'BSD',
1010
url = 'https://github.com/colinoflynn/pico-python/',
11+
download_url='https://github.com/colinoflynn/picoscope/tarball/0.4',
1112
packages = ['picoscope'],
13+
# See https://PyPI.python.org/PyPI?%3Aaction=list_classifiers
14+
classifiers = [
15+
'Development Status :: 4 - Beta',
16+
'Intended Audience :: Developers',
17+
'Topic :: Software Development :: Libraries',
18+
'Topic :: System :: Hardware',
19+
'Topic :: Scientific/Engineering',
20+
'License :: OSI Approved :: BSD License',
21+
'Programming Language :: Python :: 2.7',
22+
],
23+
24+
# What does your project relate to?
25+
keywords = 'picoscope peripherals hardware oscilloscope ATE',
1226
install_requires = []
1327
)

0 commit comments

Comments
 (0)