mirror of
https://github.com/evennia/evennia.git
synced 2025-10-29 19:35:56 +00:00
PEP 508 defines a way to specify platform-specific requirements. Rather than having to manage two different requirements files, let's crunch them down to one and use that facility. For more details on how this works, see: https://www.python.org/dev/peps/pep-0508/
81 lines
2.3 KiB
Python
81 lines
2.3 KiB
Python
import os
|
|
import sys
|
|
from setuptools import setup, find_packages
|
|
|
|
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
|
|
|
VERSION_PATH = os.path.join('evennia', 'VERSION.txt')
|
|
OS_WINDOWS = os.name == "nt"
|
|
|
|
|
|
def get_requirements():
|
|
"""
|
|
To update the requirements for Evennia, edit the requirements.txt file.
|
|
"""
|
|
with open('requirements.txt', 'r') as f:
|
|
req_lines = f.readlines()
|
|
reqs = []
|
|
for line in req_lines:
|
|
# Avoid adding comments.
|
|
line = line.split('#')[0].strip()
|
|
if line:
|
|
reqs.append(line)
|
|
return reqs
|
|
|
|
|
|
def get_scripts():
|
|
"""
|
|
Determine which executable scripts should be added. For Windows,
|
|
this means creating a .bat file.
|
|
"""
|
|
if OS_WINDOWS:
|
|
batpath = os.path.join("bin", "windows", "evennia.bat")
|
|
scriptpath = os.path.join(sys.prefix, "Scripts", "evennia_launcher.py")
|
|
with open(batpath, "w") as batfile:
|
|
batfile.write("@\"%s\" \"%s\" %%*" % (sys.executable, scriptpath))
|
|
return [batpath, os.path.join("bin", "windows", "evennia_launcher.py")]
|
|
else:
|
|
return [os.path.join("bin", "unix", "evennia")]
|
|
|
|
|
|
def get_version():
|
|
"""
|
|
When updating the Evennia package for release, remember to increment the
|
|
version number in evennia/VERSION.txt
|
|
"""
|
|
return open(VERSION_PATH).read().strip()
|
|
|
|
|
|
def package_data():
|
|
"""
|
|
By default, the distribution tools ignore all non-python files.
|
|
|
|
Make sure we get everything.
|
|
"""
|
|
file_set = []
|
|
for root, dirs, files in os.walk('evennia'):
|
|
for f in files:
|
|
if '.git' in f.split(os.path.normpath(os.path.join(root, f))):
|
|
# Prevent the repo from being added.
|
|
continue
|
|
file_name = os.path.relpath(os.path.join(root, f), 'evennia')
|
|
file_set.append(file_name)
|
|
return file_set
|
|
|
|
|
|
# setup the package
|
|
setup(
|
|
name='evennia',
|
|
version=get_version(),
|
|
author="Evennia community",
|
|
maintainer="Griatch",
|
|
maintainer_email="griatch AT gmail DOT com",
|
|
url="http://www.evennia.com",
|
|
description='A full-featured MUD building toolkit.',
|
|
packages=find_packages(),
|
|
scripts=get_scripts(),
|
|
install_requires=get_requirements(),
|
|
package_data={'': package_data()},
|
|
zip_safe=False
|
|
)
|