-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
33 lines (31 loc) · 1.04 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
#!/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="1.3",
author="Alexandre Borges",
author_email="[email protected]",
license="GNU GPL v3.0",
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',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
],
install_requires=[
"colorama",
"simplejson",
"requests",
],
scripts=['cfpsec/cfpsec.py'],
package_data={'': ['README.md, LICENSE']},
)