-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (32 loc) · 1.03 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
30
31
32
33
34
35
36
37
38
39
# -*- coding: utf-8 -*-
"""
Created Date: 2021-03-22 Am
@author: XiaoQingLin
@email: [email protected]
"""
from os.path import dirname, join
from sys import version_info
import setuptools
if version_info < (3, 0, 0):
raise SystemExit("binary_python requires must be python 3.0.0 or later.")
with open(join(dirname(__file__), "version"), "rb") as f:
version = f.read().strip()
with open("README.md", "r") as fh:
long_description = fh.read()
packages = setuptools.find_packages()
setuptools.setup(
name="binary_python",
version=version,
author="XiaoQingLin",
license="MIT",
author_email="[email protected]",
description="binary_python encryption",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["Cython==0.29.20"],
entry_points={"console_scripts": ["binary_python = binary_python.cmdline:execute"]},
url="",
packages=packages,
include_package_data=True,
classifiers=["Programming Language :: Python :: 3"],
)