This repository has been archived by the owner on Jan 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
99 lines (75 loc) · 2.54 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
from setuptools import setup, find_packages
from os import getcwd, path
currentDir = getcwd()
# Get Readme text
with open(path.join(currentDir, 'README.md'), encoding='utf-8') as fR:
readme = fR.read()
# Run setup
setup(
# Project's name
name='HTF 2.0 live site',
# Project's version number
# Major.Moderate.Minor values
version='1.0.0',
# Project's description
description='livesite for hack the fog 2.0',
# Project's long description
# Readme can't have links to external pages but
# external badges and images are permitted
long_description=readme,
# Define markdown long description type
long_description_content_type='text/markdown'
# Author's name
author='Cappillen Lee, Rafael Cenzano, Marvin Lee',
# Author's contact
author_email='[email protected]',
# Project's home page
url='https://github.com/hackthefog/LiveSite',
# Classifiers help users find your project by categorizing it.
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
# Indicate who your project is intended for
'Intended Audience :: Developers',
# Pick your license as you wish
'License :: OSI Approved :: Apache 2.0',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
# Python 2 loses support as of 2020
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
# Keywords/Tags
keywords='Hackthefog livesite',
# Finds project files
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
# Needed installs
#install_requires=[],
# Data files
# package_data={
# 'sample': ['package_data.dat'],
# },
# Python requirement
#python_requires='>=3.4',
# Adds CLI
#entry_points={
# 'console_scripts': [
# 'sample cli command = projectName.FileName:FunctionName',
# ],
#},
# Additional links
#project_urls={
# 'Bug Reports': '',
# 'Source': '',
#},
)
# setup.py generated using PyStarter
# https://pypi.org/project/PyStarter/
# pip3 install pystarter
# The above message can be deleted, it does not effect the python code.