-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (34 loc) · 967 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
29
30
31
32
33
34
35
from setuptools import setup, find_packages
setup(
name='mbti-test',
version='0.3.2',
package_dir={'': 'src'},
packages=find_packages(where='src'),
install_requires=[
# 添加项目依赖项
],
entry_points={
'console_scripts': [
'mbti-test=mbti.entry_point:main'
]
},
package_data={
'mbti': [
'data/*.json',
'i18n/*.json'
]
},
include_package_data=True,
author='luhuadong',
author_email='[email protected]',
description='A command line application for taking the MBTI personality test',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/luhuadong/mbti-test',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
)