Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
paladox authored Feb 9, 2024
1 parent 603d01c commit f05bd47
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,28 +6,28 @@
with open('README.md') as readme_file:
readme = readme_file.read()

#with open('CHANGELOG.md') as history_file:
#history = history_file.read()
# with open('CHANGELOG.md') as history_file:
# history = history_file.read()
with open('requirements.txt') as requirements_file:
requirements = list(requirements_file.readlines())

#with open('dev-requirements.txt') as dev_requirements_file:
#dev_requirements = list(dev_requirements_file.readlines())
# with open('dev-requirements.txt') as dev_requirements_file:
# dev_requirements = list(dev_requirements_file.readlines())


setup(
name='Miraheze_PyUtils',
version=VERSION,
description='Python Utilities for Miraheze',
long_description=readme, #+ '\n\n' + history,
long_description_content_type='text/markdown', # This is important!
long_description=readme, # + '\n\n' + history,
long_description_content_type='text/markdown', # This is important!
author='RhinosF1',
author_email='[email protected]',
url='https://github.com/FOSSBots/MirahezeBots',
packages=find_packages('.'),
include_package_data=True,
install_requires=requirements,
#tests_require=dev_requirements,
# tests_require=dev_requirements,
test_suite='tests',
license='GPL3',
)

0 comments on commit f05bd47

Please sign in to comment.