Update 0.1.1

This commit is contained in:
2021-01-09 14:25:59 +01:00
parent 51d22ceb77
commit 41931338b0
15 changed files with 26 additions and 17 deletions

8
setup.py Normal file → Executable file
View File

@ -1,20 +1,22 @@
#!/usr/bin/python3
from dreamutils import __author__, __version__
from setuptools import find_packages, setup
# with open('requirements.txt', 'r') as requirements:
# required = requirements.read().splitlines()
with open('README.md', 'r') as readme:
long_description = readme.read()
setup(
name='dreamutils',
version='0.1.0',
version=__version__,
packages=find_packages(),
url='',
url='https://github.com/ByteDream/dreamutils',
license='LGPL-3.0',
author='ByteDream',
author=__author__,
author_email='',
description='A collection of useful and often repeated python methods',
long_description=long_description,