-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (31 loc) · 762 Bytes
/
setup.py
File metadata and controls
executable file
·32 lines (31 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python
"""Project Setup"""
from setuptools import find_packages, setup
setup(
name='p8tool',
version='0.1',
author='Dan Sanderson',
author_email='contact@dansanderson.com',
description='Tools and Python libraries for manipulating PICO-8 game files',
license='MIT',
packages=find_packages(where='.', exclude=['tests', 'tests.*']),
include_package_data=True,
setup_requires=[
'pytest-runner',
],
install_requires=[
'pypng'
],
tests_require=[
'flake8',
'mypy',
'pypng',
'pytest',
],
entry_points={
'console_scripts': [
'p8tool=pico8.tool:main',
'p8upsidedown=pico8.demos.upsidedown:main',
],
},
)