-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (23 loc) · 950 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
from setuptools import setup, find_packages
desc = '\n'.join(("Универсальная библиотека python для большинства задач", 'A universal python library for most tasks'))
req = open('requirements.txt').read().split('\n')
setup(
name='hrenpack',
version='1.1.1',
author_email='[email protected]',
author='Маг Ильяс DOMA (MagIlyas_DOMA)',
description=desc,
license='BSD 3-Clause License',
long_description=open('README_PIP.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
url='https://github.com/MagIlyas-DOMA/hrenpack',
packages=find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
python_requires='>=3.10',
install_requires=req,
package_data={'hrenpack': ['hrenpack/resources/*']},
include_package_data=True,
)