-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
43 lines (39 loc) · 1.13 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
from pathlib import Path
from setuptools import setup
import versioneer
long_description = (Path(__file__).parent / "README.md").read_text()
setup(
name="enderchest",
python_requires=">=3.10",
description="syncing and linking for all your Minecraft instances",
long_description=long_description,
long_description_content_type="text/markdown",
author='Gili "OpenBagTwo" Barlev',
url="https://github.com/OpenBagTwo/EnderChest",
packages=[
"enderchest",
"enderchest.sync",
"enderchest.test",
"enderchest.test.testing_files",
],
package_data={
"enderchest.test": [
"testing_files/*.cfg",
"testing_files/*.json",
"testing_files/*.txt",
]
},
entry_points={
"console_scripts": [
"enderchest = enderchest.cli:main",
]
},
license="GPL v3",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
install_requires=["semantic-version>=2.7", "pathvalidate>=2.5"],
extras_require={
"test": ["pytest>=7", "coverage>=7"],
"sftp": ["paramiko>=3.3"],
},
)