-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (30 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
from setuptools import find_packages, setup
# Read the contents of the README.md file
with open("README.md", "r", encoding="utf-8") as readme_file:
long_description = readme_file.read()
setup(
name='python-pulse',
packages=find_packages(),
version='0.2.5',
description='Open-source project that simplifies the creation of desktop applications based on Chromium',
long_description=long_description,
long_description_content_type="text/markdown",
author='Vasile Ovidiu Ichim',
license='MIT',
install_requires=['cefpython3==66.1', 'Jinja2==3.1.2', 'wxPython==4.2.1'],
classifiers=[
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Development Status :: 4 - Beta',
# Define that your audience are developers
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License', # Again, pick a license
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
entry_points={
'console_scripts': [
'pypulse-manage = pypulse.manage:main'
]
},
)