Updated setup.py and licence

This commit is contained in:
2023-10-31 10:39:19 +01:00
parent 03ce9f8ac7
commit f43ea39f1b
3 changed files with 37 additions and 4 deletions

View File

@@ -1,11 +1,19 @@
from setuptools import setup
import os
setup(name='conversion_utils',
version='0.2',
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='cjvt_conversion_utils',
version='0.3',
description='CJVT conversion utilities',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://gitea.cjvt.si/generic/conversion_utils',
author='Cyprian Laskowski',
author_email='cyp@cjvt.si',
author='CJVT',
author_email='pypi@cjvt.si',
license='MIT',
packages=['conversion_utils', 'conversion_utils.resources', 'conversion_utils.tests'],
install_requires=['lxml', 'importlib_resources'],
include_package_data=True,