-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
28 lines (26 loc) · 1002 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name = 'pyaces',
packages=setuptools.find_packages(include=['pyaces']),
version = 'v0.0.4',
license='MIT',
author = 'Remy Tuyeras',
author_email = '[email protected]',
description = 'A python library for the fully homomorphic encryption scheme ACES',
long_description = long_description,
long_description_content_type = "text/markdown",
url = 'https://github.com/remytuyeras/aces',
#downlod_url = 'https://github.com/remytuyeras/aces/archive/refs/tags/aces-0.0.2.tar.gz',
keywords = ["ACES", "PyACES"],
install_requires=['numpy'],
classifiers=[
'Development Status :: 4 - Beta', #"3 - Alpha", "4 - Beta" or "5 - Production/Stable"
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Build Tools',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
],
)