-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (27 loc) · 1.05 KB
/
setup.py
File metadata and controls
34 lines (27 loc) · 1.05 KB
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
import os
import codecs
from setuptools import setup, find_packages
package_name = "PyEventsEmitter"
path = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join("README.md"), encoding="utf-8") as this:
long_description = "\n" + this.read()
VERSION = "0.0.3"
DESCRIPTION = "Powerful and flexible EventEmitter implementation with advanced features."
exclude = ["tests/", "*.tests", "*.txt", "others/", "backups/", ".vscode/", "__pycache__/",".gitignore", "docs/"]
include = ["PyEventsEmitter"]
setup(
name=package_name,
version=VERSION,
description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/HackerX7889/PyEventsEmitter",
author="HackerX",
packages=find_packages(exclude=exclude, include=include),
keywords= ["EventEmitter", "PyEventsEmitter", "Emitter", "Events"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
)