-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 1.01 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
from setuptools import setup, find_packages
with open('VERSION.txt') as fp:
version = fp.read().strip()
with open('README.md') as fp:
readme = fp.read()
with open('requirements.txt') as fp:
requirements = fp.read().splitlines()
setup(
name='pymcutil',
version=version,
author='Arcensoth',
author_email='arcensoth@gmail.com',
url='https://github.com/Arcensoth/pymcutil',
license='MIT',
description='An expressive Minecraft utility library revolving around data manipulation and generation.',
long_description_content_type='text/markdown',
long_description=readme,
packages=find_packages(),
install_requires=requirements,
python_requires='>=3.6',
keywords='minecraft commands library utility datapack data',
classifiers=(
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
))