-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (25 loc) · 1.02 KB
/
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
from setuptools import find_packages, setup
def parse_requirements(filename):
"""Load requirements from a pip requirements file."""
with open(filename, 'r') as file:
lines = file.read().splitlines()
return [line for line in lines if line and not line.startswith("#")]
setup(
name="daoram",
version="0.1.0",
author="Weiqi Feng, Xinle Cao",
author_email="weltch1997@gmail.com, xinlecao72@gmail.com",
description="A Python library for DAORAM and other classic ORAM and OMAP algorithm implementations.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/Weiqi97/DAORAM",
packages=find_packages(),
install_requires=parse_requirements("requirements.txt"), # Dynamically read dependencies
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
license="Apache 2.0"
)