-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (42 loc) · 1.34 KB
/
setup.py
File metadata and controls
47 lines (42 loc) · 1.34 KB
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
# Based on https://github.com/pypa/sampleproject
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
from os import path
from mlox.version import VERSION
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='mlox',
version=VERSION,
description='A tool for analyzing and sorting your Morrowind plugin load order.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/mlox/mlox',
author='Arthur Moore',
classifiers=[
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Games/Entertainment',
],
keywords='Morrowind Modding',
packages=['mlox', 'mlox.static'],
package_data={
'mlox.static': [
'window.qml',
'mlox.gif',
'mlox.ico',
'mlox.msg',
]},
include_package_data=True,
python_requires='>=3.5',
install_requires=['colorama', 'appdirs', 'pyqt5', 'py7zr'],
entry_points={
'console_scripts': [
'mlox=mlox.__main__:main',
],
},
)