mirror of
https://github.com/drewcassidy/Pillow-mbm.git
synced 2024-09-01 14:44:04 +00:00
Boilerplate
This commit is contained in:
parent
57bafd466a
commit
c63eaa29eb
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,3 +1,6 @@
|
||||
# Intellij
|
||||
.idea/
|
||||
|
||||
# Byte-compiled / optimized / DLL files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
|
1
pillow_mbm/__init__.py
Normal file
1
pillow_mbm/__init__.py
Normal file
@ -0,0 +1 @@
|
||||
from version import __version__
|
2
pillow_mbm/__main__.py
Normal file
2
pillow_mbm/__main__.py
Normal file
@ -0,0 +1,2 @@
|
||||
def main():
|
||||
print('theres nothing here yet!')
|
1
pillow_mbm/version.py
Normal file
1
pillow_mbm/version.py
Normal file
@ -0,0 +1 @@
|
||||
__version__ = '0.1.0'
|
44
setup.py
Normal file
44
setup.py
Normal file
@ -0,0 +1,44 @@
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
def version():
|
||||
with open('pillow_mbm/version.py') as f:
|
||||
exec(f.read())
|
||||
return __version__
|
||||
|
||||
|
||||
def readme():
|
||||
with open('README.md') as f:
|
||||
return f.read()
|
||||
|
||||
|
||||
setup(
|
||||
name='pillow-mbm',
|
||||
description="A pillow plugin that adds support for KSP's MBM textures",
|
||||
version=version(),
|
||||
long_description=readme(),
|
||||
long_description_content_type='text/markdown',
|
||||
install_requires=['Pillow'],
|
||||
extras_require={
|
||||
'cli': ['click']
|
||||
},
|
||||
package_dir={'': '.'},
|
||||
entry_points='''
|
||||
[console_scripts]
|
||||
convert-mbm=pillow_mbm.__main__:main [cli]
|
||||
''',
|
||||
classifiers=[
|
||||
'Development Status :: 1 - Planning',
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: GNU Affero General Public License v3',
|
||||
'Operating System :: OS Independent',
|
||||
'Programming Language :: Python :: 3 :: Only',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
'Programming Language :: Python :: 3.8',
|
||||
'Programming Language :: Python :: 3.9',
|
||||
'Topic :: Games/Entertainment :: Simulation',
|
||||
"Topic :: Multimedia :: Graphics",
|
||||
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
|
||||
],
|
||||
)
|
Loading…
Reference in New Issue
Block a user