-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (31 loc) · 954 Bytes
/
Copy pathsetup.py
File metadata and controls
36 lines (31 loc) · 954 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
26
27
28
29
30
31
32
33
34
35
36
# This is a script that tells pip how to setup your
# code on the system. You don't need to make any
# changes to it, nor do you need to call it yourself.
# pip runs it for you when you type commands.
from setuptools import setup
setup(
name='distancepi',
version='1.0.0-devel',
description='Client for RaspberryPi to get and View messages',
long_description='',
url='https://github.com/MattBussing/DistancePi',
author='Matt Bussing',
author_email='mbussing@mines.edu',
license='',
classifiers=[
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
packages=['distancepi'],
python_requires='>=3.5, <4',
install_requires=[
'pytest>=3.8',
'pytz',
'requests'],
entry_points={
'console_scripts': [
'distancepi=distancepi.__main__:main',
],
},
)