forked from omenoen/android_passpoint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 739 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import setuptools
from pathlib import Path
setuptools.setup(
name='android-passpoint',
version='0.0.0',
author='Jose A. Delgado Alfonso',
description='',
project_urls={
'Source Code': 'https://github.com/hylang/simalq'},
install_requires=[
'jinja2 ~= 3.1.4',
'fastapi ~= 0.111.0',
'pydantic ~= 2.7.1',
'uvicorn ~= 0.29.0'],
packages=setuptools.find_packages(),
package_data=dict(src=[
str(p.relative_to('src'))
for p in Path('simalq').rglob('*.hy')]),
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3'])