-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
43 lines (40 loc) · 1.08 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import find_packages
from setuptools import setup
from aoc_wim import __doc__
from aoc_wim import __version__
setup(
name="advent-of-code-wim",
version=__version__,
description=__doc__,
url="https://github.com/wimglenn/advent-of-code",
author="Wim Glenn",
author_email="hey@wimglenn.com",
license="WTFPL",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"Topic :: Games/Entertainment :: Puzzle Games",
],
install_requires=[
"advent-of-code-data >= 0.8.0",
"anytree",
"bidict",
"numpy",
"parse",
"scipy",
"sympy",
"fields",
"networkx",
"wimpy",
],
packages=find_packages(),
entry_points={
"adventofcode.user": ["wim = aoc_wim:plugin"],
"console_scripts": [
"aocw = aoc_wim.cli:run_one",
"_set_docstrings = aoc_wim.util:set_docstrings",
"aoc-init = aoc_wim.util:start",
],
},
)