Add more info in setup.py
This commit is contained in:
parent
8ac48a0305
commit
0cb6e78752
8
setup.py
8
setup.py
|
@ -1,8 +1,16 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
with open("README.md") as f:
|
||||
long_desc = f.read()
|
||||
|
||||
setup(
|
||||
name='amanuensis',
|
||||
version='0.0.1',
|
||||
author='Tim Van Baak',
|
||||
description='An application for playing Lexicon, the encyclopedia RPG',
|
||||
long_description=long_desc,
|
||||
long_description_content_type='text/markdown',
|
||||
url='https://github.com/Jaculabilis/Amanuensis',
|
||||
packages=find_packages(),
|
||||
include_package_data=True,
|
||||
zip_safe=True,
|
||||
|
|
Loading…
Reference in New Issue