-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.03 KB
/
setup.py
File metadata and controls
35 lines (33 loc) · 1.03 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
35
#!/usr/bin/env python3
import os
from setuptools import setup, find_packages
from pathlib import Path
import platform
with open("README.md", encoding='utf8') as readme:
long_description = readme.read()
setup(
name="cfpsec",
version="2.0.2",
author="Alexandre Borges",
author_email="reverseexploit@proton.me",
license="GPL-3.0-or-later",
url="https://github.com/alexandreborges/cfpsec",
description=("CFPsec is a client program that retrieves the list of Call For Papers or/and upcoming Hacking/Security Conferences based on cfptime.org website."),
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
install_requires=[
"colorama>=0.4.6",
"requests>=2.26.0",
],
entry_points={
'console_scripts': [
'cfpsec=cfpsec.cfpsec:main',
],
},
package_data={'': ['README.md, LICENSE']},
)