forked from wimglenn/advent-of-code-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.19 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
from setuptools import setup
setup(
name="advent-of-code-data",
version="0.8.3",
description="Get your puzzle data with a single import",
long_description=open("README.rst").read(),
long_description_content_type="text/x-rst",
packages=["aocd"],
entry_points={
"console_scripts": ["aocd=aocd.cli:main", "aoc=aocd.runner:main"],
# https://setuptools.readthedocs.io/en/latest/setuptools.html#dynamic-discovery-of-services-and-plugins
"adventofcode.user": [],
},
author="Wim Glenn",
author_email="hey@wimglenn.com",
license="MIT",
url="https://github.com/wimglenn/advent-of-code-data",
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
"Topic :: Games/Entertainment :: Puzzle Games",
],
install_requires=[
"python-dateutil",
"requests",
"termcolor",
"beautifulsoup4",
"pebble",
'colorama; platform_system == "Windows"',
],
options={"bdist_wheel": {"universal": "1"}},
)