-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (41 loc) · 1.2 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
40
41
42
43
44
# -*- coding: utf-8 -*-
# import sys
from os.path import join, dirname, exists
from setuptools import setup
from setuptools import find_packages
long_description = open(join(dirname(__file__), 'README.md')).read().strip() if exists('README.md') else ''
_locals = {}
with open("bsm/version.py") as f:
exec(f.read(), None, _locals)
version = _locals["__version__"]
install_requires = [
"termcolor==1.1.0"
]
setup(
name="openbsm",
description="MacOS OpenBSM library",
license="MIT License",
url="https://github.com/haginara/openbsm-python",
long_description=long_description,
long_description_content_type='text/markdown',
version=version,
author="Jonghak Choi",
author_email="haginara@gmail.com",
install_requires=install_requires,
entry_points={
'console_scripts': [
'pyaudit=bsm.bin.praudit:main',
]
},
packages=find_packages(),
package_data={
'': ['README.md', 'LICENSE'],
},
include_package_data=True,
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)