-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
32 lines (27 loc) · 850 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
31
32
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open("README.md") as f:
readme = f.read()
# to eval __version__
with open('SerialScope/version.py') as f: exec(f.read())
print(f"Version is {__version__}")
setup(
name = "SerialScope",
version = __version__,
python_requires = '>=3.5',
description = "A serial-port based oscilloscope",
long_description = readme,
long_description_content_type='text/markdown',
packages = find_packages(),
package_data = {},
install_requires = ['screeninfo', 'pyserial'],
author = "Dilawar Singh",
author_email = "dilawars@ncbs.res.in",
url = "http://github.com/dilawar/SerialScope",
license='GPLv3',
entry_points = {
'console_scripts' : [
'serialscope = SerialScope.__main__:main'
],
}
)