-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 982 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
from setuptools import setup
# reading long description from file
with open('README.md', 'r', encoding='utf-8') as file:
long_description = file.read()
setup(name='djinni_build',
setuptools_git_versioning={
"enabled": True,
},
setup_requires=["setuptools-git-versioning"],
description='Utility to package and distribute Djinni libraries easily.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/jothepro/djinni_build',
author='jothepro',
author_email='[email protected]',
license='MIT',
packages=['djinni_build'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10'
],
python_requires='>=3.10',
install_requires=['conan>=1.44'],
keywords='djinni')