First commit
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
|
||||
_version = "1.0"
|
||||
_project_name = "Cryptotools"
|
||||
|
||||
_packages = [
|
||||
"Numbers",
|
||||
"Groups",
|
||||
"Utils",
|
||||
]
|
||||
|
||||
setup(
|
||||
name=_project_name,
|
||||
version=_version,
|
||||
description="Cryptography library",
|
||||
author="Geoffrey Bucchino",
|
||||
author_email="contact@bucchino.org",
|
||||
packages=find_packages(),
|
||||
#packages=_packages,
|
||||
#package_dir={"": "Cryptotools"}
|
||||
)
|
||||
Reference in New Issue
Block a user