diff --git a/AUTHORS.rst b/AUTHORS.rst new file mode 100644 index 0000000..722bc25 --- /dev/null +++ b/AUTHORS.rst @@ -0,0 +1,17 @@ +Fut14 is written and maintained by Piotr Staroszczyk and various contributors: + +Development Lead +```````````````` + +- Piotr Staroszczyk + + +EAHashingAlgorithm +`````````````````` + +- Danny Cullen @dcullen88 + + +Patches and Suggestions +``````````````````````` +- mvillarejo diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..2f3f99a --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +include README.rst LICENSE requirements.txt test_fut14.py diff --git a/fut14/__init__.py b/fut14/__init__.py index 6fc777a..ef10bf1 100644 --- a/fut14/__init__.py +++ b/fut14/__init__.py @@ -20,6 +20,7 @@ __title__ = 'fut14' __version__ = '0.0.1' __author__ = 'Piotr Staroszczyk' +__author_email__ = 'piotr.staroszczyk@get24.org' __license__ = 'GNU GPL v3' __copyright__ = 'Copyright 2013 Piotr Staroszczyk' diff --git a/setup.py b/setup.py index d97995f..c307957 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ #description='', long_description=open('README.rst').read(), author=fut14.__author__, - author_email='piotr.staroszczyk@get24.org', + author_email=fut14.__author_email__, packages=packages, package_data={'': ['LICENSE']}, package_dir={'fut14': 'fut14'},