forked from PalisadoesFoundation/pattoo-shared
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (30 loc) · 1.03 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
#!/usr/bin/env python3
"""Setup pattoo-shared package."""
# Import setup
import setuptools
# Read the description file
with open('README.rst', 'r') as fh:
LONG_DESCRIPTION = fh.read()
setuptools.setup(
# Background information on PIP package.
name='PattooShared',
url='https://github.com/PalisadoesFoundation/pattoo-shared',
download_url='https://github.com/PalisadoesFoundation/pattoo-shared',
# Who to call
author='Peter Harrison',
author_email='[email protected]',
maintainer='Peter Harrison',
maintainer_email='[email protected]',
# The license can be anything you like
license='GPLv3+',
# Automatically find the required package dependencies
packages=setuptools.find_packages(),
# Create a description of the package
description='Shared libraries for Pattoo Servers and Agents.',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/x-rst',
# Minium python version
python_requires='>=3.6',
# Set up the version
version='0.0.85',
)