fix broken package

v1.5.1
This commit is contained in:
Teleport
2023-07-13 16:53:52 +03:00
parent dda2abd661
commit 352ca0f032
4 changed files with 5 additions and 7 deletions

3
MANIFEST.in Normal file
View File

@@ -0,0 +1,3 @@
include LICENSE
include requirements.txt
include README.md

View File

@@ -1,3 +1,3 @@
from .api import *
__version__ = '1.5.0'
__version__ = '1.5.1'

View File

@@ -1,3 +0,0 @@
[egg_info]
tag_build =
tag_date = 0

View File

@@ -1,8 +1,6 @@
from os import path
from setuptools import setup
from pyspw import __version__
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
@@ -12,7 +10,7 @@ requirements = open('requirements.txt', 'r').read().split('\n')
setup(
name='Py-SPW',
version=__version__,
version='1.5.1',
packages=['pyspw'],
url='https://github.com/teleportx/Py-SPW',
license='MIT License',