forked from zhangyunhao116/Python-script-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (23 loc) · 814 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
#!/usr/bin/env python
from setuptools import setup, find_packages
PROJECT_NAME = 'python-script-converter'
MODULE_NAME = 'psc'
setup(
name='python-script-converter',
version='1.1',
author='ZhangYunHao',
author_email='[email protected]',
description='This is a tiny tool used to convert a python script to a executable file(only for Mac and Linux).',
long_description='This is a tiny tool used to convert a python script to a executable file(only for Mac and Linux)',
keywords='python tool converter',
url='https://github.com/ZYunH/Python-script-converter',
license="MIT Licence",
platforms='Mac Linux',
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'psc = psc.__main__:main'
]
}
)