Skip to content

Commit

Permalink
Move setup options to setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
jleclanche committed Mar 10, 2017
1 parent 5373924 commit 003e3e0
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 13 deletions.
15 changes: 15 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,18 @@ classifiers =
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Topic :: Multimedia :: Graphics

[options]
packages = find:
scripts =
bin/unityextract
bin/unity2yaml

install_requires =
decrunch
fsb5
lz4
Pillow

[options.package_data]
unitypack = classes.json, strings.dat, structs.dat
15 changes: 2 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,6 @@
#!/usr/bin/env python3

from setuptools import setup, find_packages
from setuptools import setup


setup(
name="unitypack",
packages=find_packages(),
package_data={"": ["classes.json", "strings.dat", "structs.dat"]},
scripts=["bin/unityextract", "bin/unity2yaml"],
install_requires=[
"decrunch",
"fsb5",
"lz4",
"Pillow",
],
)
setup()

0 comments on commit 003e3e0

Please sign in to comment.