-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (24 loc) · 887 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
"""Controls the setup of python-functions by setuptools/pip."""
from setuptools import find_packages, setup
from miraheze.version import VERSION
with open('README.md') as readme_file:
readme = readme_file.read()
with open('requirements.txt') as requirements_file:
requirements = list(requirements_file.readlines())
setup(
name='Miraheze_PyUtils',
version=VERSION,
description='Python Utilities for Miraheze',
long_description=readme,
long_description_content_type='text/markdown', # This is important!
author='RhinosF1',
author_email='[email protected]',
maintainer='Miraheze Technology Team',
maintainer_email='[email protected]',
url='https://github.com/miraheze/python-functions',
packages=find_packages('.'),
include_package_data=True,
install_requires=requirements,
test_suite='tests',
license='GPL3',
)