-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 850 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
import os.path
from setuptools import find_packages, setup
readme_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "README.md"))
with open(readme_path, "r", encoding="utf-8") as f:
readme = f.read()
setup(
name="technical-interview-questions",
packages=find_packages(where="src"),
package_dir={"": "src"},
version="0.1.0",
# metadata to display on PyPI
author="Mark Bonicillo",
author_email="[email protected]",
description="Simple and clean solutions for typical technical interview questions.",
long_description=readme,
license="GPLv3",
url="https://github.com/bonicim/technical_interviews_exposed",
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Algorithms",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)