-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 720 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import find_packages, setup
with open("README.md") as f:
long_description = f.read()
setup(
name='libmesh',
packages=find_packages(),
version='0.0.6',
description='This library can get answers from uchebnik.mos.ru ',
author='superdima05, kinda-cookie-monster',
python_requires='>=3.9',
scripts=['scripts/meshLauncher'],
license='GPL-3.0',
license_file='LICENSE',
install_requires=['requests'],
long_description_content_type='text/markdown',
long_description=long_description,
url='https://github.com/superdima05/mesh/',
classifiers=[
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
]
)