-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 803 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 803 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='pyduinoincludes',
description="Basic SNAPpy includes for the Synapse Pyduino wireless meshing development board",
maintainer='Tyler Crumpton',
maintainer_email='tyler.crumpton@synapse-wireless.com',
url='https://github.com/tylercrumpton/pyduino-includes',
packages=['pyduinoincludes'],
install_requires=['vcversioner'],
vcversioner={
'version_module_paths': ['pyduinoincludes/_version.py'],
},
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Natural Language :: English',
],
)