-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 899 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 899 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
from setuptools import setup
import normalizer
setup(
name='dolphin-normalizer',
author='Jean-Philippe Hautin',
description="a small utility to normalize gamecube iso files to be runnable by nintendont or dolphin",
long_description=open('README.md').read(),
install_requires=['requests'],
license='GLPv3',
packages=['normalizer'],
platforms='ALL',
url='https://github.com/jphautin/dolphin-normalizer',
version=normalizer.__version__,
entry_points = {
'console_scripts': [
'dolphin-normalizer = normalizer:main',
],
},
classifiers=[
"Programming Language :: Python",
"Development Status :: 1 - Planning",
"License :: GLPv3",
"Natural Language :: French",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Topic :: Games",
],
)