mirror of
https://github.com/yawaflua/Py-SPW.git
synced 2025-12-09 20:09:31 +02:00
fix broken package
v1.5.1
This commit is contained in:
3
MANIFEST.in
Normal file
3
MANIFEST.in
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
include LICENSE
|
||||||
|
include requirements.txt
|
||||||
|
include README.md
|
||||||
@@ -1,3 +1,3 @@
|
|||||||
from .api import *
|
from .api import *
|
||||||
|
|
||||||
__version__ = '1.5.0'
|
__version__ = '1.5.1'
|
||||||
|
|||||||
4
setup.py
4
setup.py
@@ -1,8 +1,6 @@
|
|||||||
from os import path
|
from os import path
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
from pyspw import __version__
|
|
||||||
|
|
||||||
this_directory = path.abspath(path.dirname(__file__))
|
this_directory = path.abspath(path.dirname(__file__))
|
||||||
|
|
||||||
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
|
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(
|
setup(
|
||||||
name='Py-SPW',
|
name='Py-SPW',
|
||||||
version=__version__,
|
version='1.5.1',
|
||||||
packages=['pyspw'],
|
packages=['pyspw'],
|
||||||
url='https://github.com/teleportx/Py-SPW',
|
url='https://github.com/teleportx/Py-SPW',
|
||||||
license='MIT License',
|
license='MIT License',
|
||||||
|
|||||||
Reference in New Issue
Block a user