-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
54 lines (39 loc) · 1.1 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
45
46
47
48
49
50
51
52
53
54
from distutils.core import setup
from setuptools import find_packages
import os
# Optional project description in README.md:
current_directory = os.path.dirname(os.path.abspath(__file__))
try:
with open(os.path.join(current_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
except Exception:
long_description = ''
setup(
# Project name:
name='planktomation',
# Packages to include in the distribution:
packages=['planktomation'],
# Project version number:
version='',
# List a license for the project, eg. MIT License
license='',
# Short description of your library:
description='',
# Long description of your library:
long_description=long_description,
long_description_content_type='text/markdown',
# Your name:
author='',
# Your email address:
author_email='',
# Link to your github repository or website:
url='',
# Download Link from where the project can be downloaded from:
download_url='',
# List of keywords:
keywords=[],
# List project dependencies:
install_requires=["paho-mqtt","loguru","RPi.GPIO"],
# https://pypi.org/classifiers/
classifiers=[]
)