Files
warpy/setup.py
雲華 7d83c4b2ff adds the "state" value to the returned open world json payloads
This option adds the "state" value which is meant to make the json payloads
easier to understand for open worlds. Currently vallisCycle does not have a
value that provides a string based value of its current state where as
cetusCycle and cambionCycle do. One of the other issues is that there is no
consistency between cetusCycle and cambionCycle for their string based
representation of the worlds open state. cetusCycle uses 'state' where as
cambionCycle uses 'active'. In their own respective in-game terms this isn't
necessarily wrong.
2021-05-05 01:12:28 -04:00

30 lines
816 B
Python

import setuptools
import os
import codecs
cwd = os.path.abspath(os.path.dirname(__file__))
def read(rel_path):
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, rel_path), 'r') as fp:
return fp.read()
def get_version(rel_path):
for line in read(rel_path).splitlines():
if line.startswith('__version__'):
delim = '"' if '"' in line else "'"
return line.split(delim)[1]
else:
raise RuntimeError("Unable to find version string.")
setuptools.setup(
name='warpy',
version=get_version('warpy/__init__.py'),
author='yunwah',
description='An asynchronous API wrapper for the unofficial WarframeStat.us API.',
url='https://github.com/yunwah/warpy',
packages=setuptools.find_packages()
)