-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
31 lines (27 loc) · 994 Bytes
/
setup.py
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
with open('README.rst') as readme_file:
long_description = readme_file.read()
setup(
name="ipuz",
version="1.0",
license="MIT",
description="Python library for reading and writing ipuz puzzle files",
long_description=long_description,
author="Simeon Visser",
author_email="[email protected]",
url="https://github.com/svisser/ipuz",
install_requires=[],
packages=['ipuz', 'ipuz.puzzlekinds', 'ipuz.structures'],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Games/Entertainment :: Puzzle Games",
]
)