mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-29 09:52:36 +02:00
Preparing release 4.1
This commit is contained in:
parent
f4231ed37c
commit
564a5ca1fd
2 changed files with 4 additions and 7 deletions
|
@ -30,4 +30,3 @@ Contributing
|
||||||
Do you wish to contribute to IHateMoney? Fantastic! There's a lot of very
|
Do you wish to contribute to IHateMoney? Fantastic! There's a lot of very
|
||||||
useful help on the official `contributing
|
useful help on the official `contributing
|
||||||
<https://ihatemoney.readthedocs.io/en/latest/contributing.html>`_ page.
|
<https://ihatemoney.readthedocs.io/en/latest/contributing.html>`_ page.
|
||||||
|
|
||||||
|
|
8
setup.py
8
setup.py
|
@ -1,5 +1,4 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
import codecs
|
|
||||||
import os
|
import os
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
|
@ -8,9 +7,8 @@ here = os.path.abspath(os.path.dirname(__file__))
|
||||||
|
|
||||||
def read_file(filename):
|
def read_file(filename):
|
||||||
"""Open a related file and return its content."""
|
"""Open a related file and return its content."""
|
||||||
with codecs.open(os.path.join(here, filename), encoding='utf-8') as f:
|
with open(os.path.join(here, filename), "r") as f:
|
||||||
content = f.read()
|
return f.read()
|
||||||
return content
|
|
||||||
|
|
||||||
|
|
||||||
def parse_requirements(filename):
|
def parse_requirements(filename):
|
||||||
|
@ -35,7 +33,7 @@ ENTRY_POINTS = {
|
||||||
setup(name='ihatemoney',
|
setup(name='ihatemoney',
|
||||||
version='4.1',
|
version='4.1',
|
||||||
description='A simple shared budget manager web application.',
|
description='A simple shared budget manager web application.',
|
||||||
long_description=README.encode('utf-8'),
|
long_description=README,
|
||||||
license='Custom BSD Beerware',
|
license='Custom BSD Beerware',
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Programming Language :: Python",
|
"Programming Language :: Python",
|
||||||
|
|
Loading…
Reference in a new issue