-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 942 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
30
"""PyPI Package Prototype"""
import os
from setuptools import setup, find_packages
PROJECT_ROOT = os.path.dirname(os.path.abspath(__file__))
setup(
name='pypi-package',
version='0.0.0',
description='PyPI Package Prototype',
packages=find_packages(os.path.join(PROJECT_ROOT, 'src')),
package_dir={"": 'src'},
namespace_packages=['hl_namespace', 'hl_namespace.ll_namespace'],
entry_points={
'console_scripts': [
'module-name-main = hl_namespace.ll_namespace.module_name:main']},
install_requires=[],
python_requires='>=3.8',
zip_safe=True,
classifiers=[
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Education",
"License :: Free For Educational Use",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8"],
)