This repository has been archived by the owner on Sep 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
51 lines (49 loc) · 1.62 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# setup.py
#
# Copyright 2020 Alvarito050506 <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
#
from setuptools import setup, find_packages
setup(
name="mcpi-central",
version="v0.2.0",
description="MCPI centralized API.",
author="Alvarito050506",
author_email="[email protected]",
url="https://github.com/MCPI-Devs/mcpi-central",
project_urls={
"Bug Tracker": "https://github.com/MCPI-Devs/mcpi-central/issues",
"Documentation": "https://github.com/MCPI-Devs/mcpi-central#readme",
"Source Code": "https://github.com/MCPI-Devs/mcpi-central",
},
packages=["mcpicentral"],
package_dir={
"mcpicentral": "src"
},
install_requires=["requests"],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)"
],
python_requires=">=3.7"
);