-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 777 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 777 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='mc_creatormc_sdkspring',
version='1.2.1',
description = "一个基于网易我的世界 MODSDK 开发的框架,可以让开发者更方便的使用 MODSDK。",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='CreatorMC',
url='https://github.com/CreatorMC/MODSDKSping',
packages=find_packages(),
install_requires=[],
entry_points={
'console_scripts': [
'modsdkspring=modsdkspring.main:main',
],
},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: MIT License"
],
platforms='any'
)