Commit 943909f8 authored by Michal Čihař's avatar Michal Čihař

Fix setup initialization

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent da687e88
......@@ -22,15 +22,15 @@
import os
from setuptools import setup
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
with open('requirements.txt') as requirements:
REQUIRES = requirements.read().splitlines()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='weblate',
version='2.3',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment