-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (31 loc) · 1.05 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
from setuptools import setup, find_packages
with open('README.md') as readme:
long_description = readme.read()
with open('requirements.txt') as requirements:
dependencies = [line.strip() for line in requirements]
setup(
name='endermite',
version='0.0.7',
license='MIT',
description='A high-level, opinionated python framework for building Minecraft data packs',
long_description=long_description,
long_description_content_type='text/markdown',
author='Valentin Berlier',
author_email='berlier.v@gmail.com',
url='https://github.com/vberlier/endermite',
platforms=['any'],
python_requires='>=3.7',
classifiers=[
'Development Status :: 1 - Planning',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
],
keywords='minecraft datapack python framework mcfunction map-making',
packages=find_packages(),
install_requires=dependencies,
entry_points={
'console_scripts': [
'ender=endermite.cli:ender',
],
},
)