-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 783 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 783 Bytes
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
from setuptools import setup
from setuptools import find_packages
VERSION = '1.0.0'
PACKAGES = find_packages()
NAME = 'encrypted'
INSTALL_REQUIRES = [
"pycryptodome==3.11.0",
"rsa==4.7.2",
"PyYAML==5.4.1"
]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name=NAME, # package name
version=VERSION, # package version
author="sk",
author_email="ldu_sunkaixuan@163.com",
description='Encryption configuration information module', # package description
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
install_requires=INSTALL_REQUIRES,
packages=find_packages(),
include_package_data=True,
classifiers=["Programming Language :: Python :: 3"],
)