-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
24 lines (20 loc) · 832 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
import os
import setuptools
from setuptools import setup
setup(name='LCR',
version="0.1",
description='package to operate an Agilent/Keysight A4980E LCR meter \
using python',
description_content_type='text/markdown; \
charset=UTF-8; variant=GFM',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown; \
charset=UTF-8; variant=GFM',
url='https://github.com/EISy-as-Py/hardy',
license='MIT',
author='Maria Polit',
python_requires="~=3.5",
packages=setuptools.find_packages())
classifiers = ("Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent")