-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
25 lines (24 loc) · 830 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
from setuptools import setup, find_packages
setup(
name="advent-of-code-sample",
version="0.1",
description="myusername's solutions for https://adventofcode.com/",
url="https://github.com/myusername/advent-of-code-myusername",
author="My Username",
author_email="myusername@example.com",
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",
# list your other requirements here, for example:
# "numpy", "parse", "networkx",
],
packages=find_packages(),
entry_points={
"adventofcode.user": ["myusername = mypackage:mysolve"],
},
)