-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (29 loc) · 1.08 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
import os
from setuptools import setup
with open(os.path.join("README.rst")) as file:
readme = file.read()
with open(os.path.join("requirements.txt")) as file:
requirements = file.read().split("\n")
setup(
name="onany",
packages=["onany"],
version=os.getenv("GITHUB_REF") \
.replace("refs/tags/v", ""),
license="MIT",
description="Event manager library",
long_description=readme,
author="Vinicius Guedes",
author_email="[email protected]",
url="https://github.com/vinyguedess/onany",
download_url="https://github.com/vinyguedess/onany/archive/master.zip",
keywords=["event", "events", "listener", "dispatch"],
install_requires=requirements,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
])