This repository was archived by the owner on Jun 1, 2019. It is now read-only.
forked from AkelaInc/avmu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (35 loc) · 1.34 KB
/
setup.py
File metadata and controls
42 lines (35 loc) · 1.34 KB
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
import sys
import struct
import os
if sys.version_info < (3, 4):
sys.exit('Sorry, Python < 3.4 is not supported')
if struct.calcsize("P") * 8 != 64:
sys.exit("This interface requires 64 bit python!")
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name = "avmu",
version = "0.0.12",
author = "Connor Wolf, Akela Inc",
author_email = "cwolf@akelainc.com",
description = "Control interface and API for running Akela Vector Measurement Units.",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/AkelaInc/avmu",
packages = setuptools.find_packages(),
python_requires = ">=3.4",
install_requires = [
'numpy',
'cffi',
],
include_package_data = True,
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
],
)