-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
41 lines (34 loc) · 1.33 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
import sys
import struct
import os
if sys.version_info < (3, 4):
sys.exit('Sorry, Python < 3.4 is not supported')
# We now have 32 bit linux builds (because linuxcnc is annoying)
# 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.1.1",
author = "Connor Wolf, Akela Inc",
author_email = "[email protected]",
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",
],
)