-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (24 loc) · 863 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
import codecs
import os
from setuptools import find_packages, setup
def read(*parts):
file_path = os.path.join(os.path.dirname(__file__), *parts)
return codecs.open(file_path, encoding="utf-8").read()
setup(
name="maze_runner",
packages=find_packages(),
version=read("VERSION"),
license="MIT License",
# install_requires=[],
# requires=[],
# classifiers=[],
description="Programming challenge for CS students.",
long_description=read("README.md"),
long_description_content_type="text/markdown",
author="Matheus Jardim Bernardes",
author_email="[email protected]",
maintainer="Matheus Jardim Bernardes",
maintainer_email="[email protected]",
url="https://github.com/matheusjardimb/maze_runner/",
download_url="https://github.com/matheusjardimb/maze_runner/zipball/main",
)