-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·45 lines (36 loc) · 1.38 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
#!/usr/bin/python
# -*- coding: utf8 -*-
from setuptools import setup, find_packages
import sys
import os
import os.path as path
os.chdir(path.realpath(path.dirname(__file__)))
sys.path.insert(1, 'src')
import pymlab
setup(
name = 'pymlab',
version = pymlab.__version__,
author = 'Jan Milík',
author_email = '[email protected]',
description = 'Toolbox for interfacing I2C sensors.',
long_description = pymlab.__doc__,
url = 'https://github.com/MLAB-project/pymlab',
#packages = ['pymlab', 'pymlab.sensors', 'pymlab.tests', ],
packages = find_packages("src"),
package_dir = {'': 'src'},
provides = ['pymlab'],
install_requires = [ 'hidapi' ],
keywords = ['TWI', 'IIC', 'I2C', 'USB', 'sensors', 'drivers'],
license = 'Lesser General Public License v3',
download_url = 'https://github.com/MLAB-project/pymlab/archive/refs/heads/master.zip',
test_suite = 'pymlab.tests',
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Natural Language :: Czech',
# 'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
]
)