-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (56 loc) · 3.04 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
55
56
57
58
59
#!/usr/bin/env python3
# -*- coding:utf-8 -*-
'''
*------------------------------------------------------------------------------*
# File: /williamye/program/pyxel_projects/muser/setup.py #
# Project: /williamye/program/pyxel_projects/muser #
# Created Date: Thursday, December 12th 2019, 12:53:39 pm #
# Author : Qiufeng54321 #
# Email : [email protected] #
# #
# Copyright (C) 2019 Qiufeng54321 #
# 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, either version 3 of the License, or #
# (at your option) any later version. #
# 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, see <https://www.gnu.org/licenses/>. #
# ----- #
# Description: #
# #
# #
*------------------------------------------------------------------------------*
'''
import io
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = "muser",
version = "1.4.0",
author = "Qiufeng54321",
author_email = "[email protected]",
description = "A musical game made using pyxel",
long_description = long_description,
long_description_content_type = 'text/markdown',
license = "GPLv3",
keywords = "pyxel",
url = "https://github.com/Qiufeng54321/muser",
install_requires = io.open("requirements.txt", "r").read().split("\n"),
packages = find_packages(),
zip_safe = False,
entry_points = {
'console_scripts': [
'muser=muser:main',
],
},
classifiers =[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
)