Skip to content

Commit

Permalink
Update project metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
Stranger6667 committed Nov 25, 2020
1 parent d6d75cf commit a54d52b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import codecs
import os
import sys

from setuptools import find_packages, setup
Expand Down Expand Up @@ -39,14 +41,22 @@ def run_tests(self):
}


def read(fname):
file_path = os.path.join(os.path.dirname(__file__), fname)
return codecs.open(file_path, encoding="utf-8").read()


setup(
name='django-money',
version=djmoney.__version__,
description='Adds support for using money and currency fields in django models and forms. '
'Uses py-moneyed as the money implementation.',
long_description=read("README.rst"),
long_description_content_type="text/x-rst",
url='https://github.com/django-money/django-money',
maintainer='Greg Reinbach',
maintainer_email='greg@reinbach.com',
license="BSD",
packages=find_packages(include=['djmoney', 'djmoney.*']),
install_requires=[
'setuptools',
Expand Down

0 comments on commit a54d52b

Please sign in to comment.