-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (41 loc) · 1.43 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
40
41
42
43
44
45
46
#-*-*- encoding: utf-8 -*-*-
import os
import platform
import subprocess
from collections import OrderedDict
from setuptools import setup, Command, find_packages
from setuptools.command.sdist import sdist
from setuptools.command.install import install
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.9",
]
cp_license="BSD 2-Clause license"
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='ll-oscilloscope-measurements',
version='0.1.1',
description="",
long_description=long_description,
long_description_content_type="text/markdown",
project_urls=OrderedDict((
('Code', 'https://github.com/labsland/ll-oscilloscope-measurements'),
('Issue tracker', 'https://github.com/labsland/ll-oscilloscope-measurements/issues'),
)),
classifiers=classifiers,
author='LabsLand',
author_email='[email protected]',
url='https://github.com/labsland/ll-oscilloscope-measurements/',
license=cp_license,
py_modules=['ll_oscilloscope_measurements'],
install_requires=['numpy', 'scipy'],
extra_requires={
'test': ['pytest']
}
)